> For the complete documentation index, see [llms.txt](https://docs.platform.gamezop.com/publishers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.platform.gamezop.com/publishers/criczop/criczop-cricket-feed-api/criczop-cricket-feed-api-json.md).

# Criczop Cricket Feed API (JSON)

### Making the request

#### API endpoint

<mark style="color:green;">`GET`</mark> `https://api.criczop.com/v1/cricket-feed`

#### Headers

<table><thead><tr><th width="189.8828125">Name</th><th>Description</th></tr></thead><tbody><tr><td>Authorization: Bearer<mark style="color:red;">*</mark></td><td>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 <em>Settings &#x26; Admin > API Tokens</em> within the Gamezop Business Dashboard. </td></tr></tbody></table>

***

### 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.

{% tabs %}
{% tab title="200: OK" %}
**Expected response body:**

```json
{
  "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
}
```

{% endtab %}

{% tab title="401: Unauthorized" %}
Here are the error messages you could receive:

* [*Invalid Bearer Token*](#user-content-fn-1)[^1]*.*
  {% endtab %}

{% tab title="500: Internal Server Error" %}
Here are the error messages you could receive:

* [*Internal Server Error.*](#user-content-fn-2)[^2]
  {% endtab %}
  {% endtabs %}

#### 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:

<table><thead><tr><th width="189.9140625">Key</th><th>Description</th></tr></thead><tbody><tr><td>url</td><td><a data-footnote-ref href="#user-content-fn-3">URL of the full article</a> or content on Criczop. Send your users to this URL when they want to read the full content.</td></tr><tr><td>images.landscape</td><td>Link to a landscape image related to the article / item.</td></tr><tr><td>title</td><td>The headline of the article / content. Ideally, display it as a clickable link.</td></tr><tr><td>description</td><td>Short summary of the article’s content. Often displayed as preview text below the title in feed readers. </td></tr><tr><td>published_at</td><td>Publication date and time of the item. Follows the <a href="https://en.wikipedia.org/wiki/ISO_8601">ISO 8601</a> format.</td></tr></tbody></table>

***

### Other notes

* Criczop only offers content in English
* There is no pagination on the API; it will always return the 100 latest items

[^1]: Occurs if the Bearer Token sent in the API request is invalid, or if you don't send a Bearer Token.

[^2]: Occurs in case of API outage, or other unforeseen errors.

[^3]: This value will always use your [Criczop Unique Link](/publishers/criczop/integrate-unique-link.md) so that you benefit from our revenue-sharing program.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.platform.gamezop.com/publishers/criczop/criczop-cricket-feed-api/criczop-cricket-feed-api-json.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
