Endpoint Playground
Test Crawlora's Get a Cricinfo match scorecard 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/match?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical Cricinfo full-scorecard or live-cricket-score URL |
{
"code": 200,
"data": {
"end_date": "sample",
"fetched_at": "sample",
"format": "sample",
"id": "sample-id",
"innings": [
{
"batters": [
{
"balls": 1,
"fours": 1,
"out": true,
"player": "sample",
"runs": 1,
"sixes": 1
}
],
"bowlers": [
{
"maidens": 1,
"overs": 1.23,
"player": "sample",
"runs": 1,
"wickets": 1
}
],
"number": 1,
"overs": 1.23,
"runs": 1,
"team": "sample",
"wickets": 1
}
],
"series": {
"id": "sample-id",
"name": "sample",
"slug": "sample"
},
"start_date": "sample",
"state": "sample",
"status": "ok",
"status_text": "ok",
"teams": [
{
"home": true,
"id": "sample-id",
"live": true,
"name": "sample",
"score": "sample",
"score_info": "sample",
"short_name": "sample"
}
],
"title": "sample",
"url": "https://example.com/resource",
"venue": "sample"
},
"msg": "OK"
}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 public Cricinfo match scorecard with match state, team scores, and available innings totals and batter/bowler lines. Upcoming matches return an empty innings list. `url` must be a canonical `https://www.cricinfo.com/series/.../(full-scorecard|live-cricket-score)` URL; live-score URLs are normalized to the paired scorecard.
{
"code": 200,
"data": {
"end_date": "sample",
"fetched_at": "sample",
"format": "sample",
"id": "sample-id",
"innings": [
{
"batters": [
{
"balls": 1,
"fours": 1,
"out": true,
"player": "sample",
"runs": 1,
"sixes": 1
}
],
"bowlers": [
{
"maidens": 1,
"overs": 1.23,
"player": "sample",
"runs": 1,
"wickets": 1
}
],
"number": 1,
"overs": 1.23,
"runs": 1,
"team": "sample",
"wickets": 1
}
],
"series": {
"id": "sample-id",
"name": "sample",
"slug": "sample"
},
"start_date": "sample",
"state": "sample",
"status": "ok",
"status_text": "ok",
"teams": [
{
"home": true,
"id": "sample-id",
"live": true,
"name": "sample",
"score": "sample",
"score_info": "sample",
"short_name": "sample"
}
],
"title": "sample",
"url": "https://example.com/resource",
"venue": "sample"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/cricinfo/match?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"