Endpoint Playground
Test Crawlora's Cricinfo commentary 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/commentary?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical Cricinfo full-scorecard or live-score URL | |
| limit | integer | No | Maximum commentary entries returned, from 1 to 100 |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.cricinfo.com/series/cup-2026-1/team-a-v-team-b-1-2/live-cricket-score",
"match": {
"id": "2",
"title": "Final"
},
"count": 1,
"entries": [
{
"id": "9",
"inning": 1,
"over": 4.2,
"ball": 3,
"title": "Bowler to Batter",
"text": "Four runs",
"runs": 4,
"batsman_runs": 4,
"is_boundary": true,
"is_wicket": false
}
]
}
}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 the latest ball-by-ball and editorial commentary embedded in a public Cricinfo match page. `url` may be a canonical full-scorecard or live-score URL.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.cricinfo.com/series/cup-2026-1/team-a-v-team-b-1-2/live-cricket-score",
"match": {
"id": "2",
"title": "Final"
},
"count": 1,
"entries": [
{
"id": "9",
"inning": 1,
"over": 4.2,
"ball": 3,
"title": "Bowler to Batter",
"text": "Four runs",
"runs": 4,
"batsman_runs": 4,
"is_boundary": true,
"is_wicket": false
}
]
}
}curl "https://api.crawlora.net/api/v1/cricinfo/commentary?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"