Endpoint Playground
Test Crawlora's Cricinfo news API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/cricinfo/news" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Maximum stories returned, from 1 to 100 |
{
"code": 200,
"msg": "OK",
"data": {
"total": 162049,
"count": 1,
"stories": [
{
"id": "1552230",
"title": "Durham win in six balls to extend Division Two dominance",
"genre": "REPORT"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a bounded snapshot of Cricinfo's latest public stories, including titles, summaries, authors, genres, publication times, images, and associated match or series identifiers.
{
"code": 200,
"msg": "OK",
"data": {
"total": 162049,
"count": 1,
"stories": [
{
"id": "1552230",
"title": "Durham win in six balls to extend Division Two dominance",
"genre": "REPORT"
}
]
}
}curl "https://api.crawlora.net/api/v1/cricinfo/news" \
-H "x-api-key: $CRAWLORA_API_KEY"