Endpoint Playground
Test Crawlora's Cricinfo live matches 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/live" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"matches": [
{
"id": "1496583",
"title": "2nd Test",
"state": "LIVE",
"url": "https://www.cricinfo.com/series/.../full-scorecard"
}
]
}
}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 current public live-score feed, including live, upcoming, and recently completed match cards with their canonical scorecard URLs.
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"matches": [
{
"id": "1496583",
"title": "2nd Test",
"state": "LIVE",
"url": "https://www.cricinfo.com/series/.../full-scorecard"
}
]
}
}curl "https://api.crawlora.net/api/v1/cricinfo/live" \
-H "x-api-key: $CRAWLORA_API_KEY"