For the complete documentation index, see llms.txt. This page is also available as Markdown.

Criczop Cricket Feed API (JSON)

This page explains how to use the JSON version of the Criczop Cricket Feed API

Making the request

API endpoint

GET https://api.criczop.com/v1/cricket-feed

Headers

Name
Description

Authorization: Bearer*

You must ask your Gamezop Account Manager to get your Bearer token created for you. You can then find the Bearer token for this API under Settings & Admin > API Tokens within the Gamezop Business Dashboard.


Understanding the response

HTTP response codes

The API provides a JSON response with a data array. This array contains a list of content objects which you can use to create a cricket feed in your app / website.

Expected response body:

{
  "data": [
    {
      "url": "https://www.criczop.com/cricket-news/ind-vs-eng-2025-we-will-give-it-a-good-crack-harry-brook-on-chasing-450-beyond-in-tests",
      "images": {
        "landscape": "https://static.platform.gamezop.com/cms/media/harry-brook-ind-vs-eng-1st-test.webp"
      },
      "title": "IND vs ENG 2025: \"We Will Give It A Good Crack\" - Harry Brook On Chasing 450 & Beyond In Tests",
      "description": "Talking to TOI, Harry Brook said that this current England side will not back down from chasing even something like 450 or more in Tests.",
      "published_at": "2025-07-01T18:09:30Z"
    }
  ],
  "success": true
}

Response body content

The API response contains an array named data, containing 100 or fewer item objects. The table below explain the fields present within each item object:

Key
Description

url

URL of the full article or content on Criczop. Send your users to this URL when they want to read the full content.

images.landscape

Link to a landscape image related to the article / item.

title

The headline of the article / content. Ideally, display it as a clickable link.

description

Short summary of the article’s content. Often displayed as preview text below the title in feed readers.

published_at

Publication date and time of the item. Follows the ISO 8601 format.


Other notes

  • Criczop only offers content in English

  • There is no pagination on the API; it will always return the 100 latest items

Last updated