Skip to main content
GET
Get Articles API

About this API

This API returns a data array of the latest news articles for a Topic Group. You can use it to build a news feed in your app / website. Before you start, make sure you have gone through the Feedzop News Feed API overview.

Important notes

  • topic_group is required. It decides which topics the articles come from.
  • The API is paginated. Use limit (5 to 100 articles per page, default 100) and page (starting from 1, default 1) to fetch more articles.
  • Not all articles have images. If you choose to display images, you do so at your own discretion. We cannot transfer image licensing rights to you.
  • Each partner can make up to 10,000 requests per day. Requests beyond this return an HTTP 429 error, with a message telling you how many seconds to wait before retrying.

API specification

Authorizations

Authorization
string
header
required

You can find the Bearer token for this API under Settings & Admin > API Tokens within the Gamezop Business Dashboard.

Query Parameters

topic_group
string<uuid>
required

ID of the Topic Group whose articles you want to fetch. A Topic Group is a set of entities (people, teams, organisations, etc.) created specifically for you, and the API returns articles that mention these entities. Your Gamezop Account Manager will share your Topic Group IDs. Learn more.

limit
integer
default:100

Number of articles to return per page. Must be between 5 and 100. Defaults to 100.

Required range: 5 <= x <= 100
page
integer
default:1

Page number to return. Must be 1 or greater. Defaults to 1.

Required range: x >= 1

Response

HTTP 200 OK. Returns a list of articles.

code
string

Status of the request. This is SUCCESS in successful responses.

data
object[]

Array of articles for the requested page.

version
string

Release version.

success
boolean

Boolean value that is true in successful responses.