Endpoint Playground
Test Crawlora's Cricinfo grounds 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/grounds" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Maximum featured grounds returned, from 1 to 100 |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.cricinfo.com/cricket-grounds",
"total": 239,
"count": 1,
"grounds": [
{
"id": "56544",
"name": "Sydney Cricket Ground",
"slug": "sydney-cricket-ground",
"town": "Sydney",
"country": "Australia"
}
],
"countries": [
{
"id": "2",
"name": "Australia",
"slug": "australia"
}
]
}
}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 featured public ground directory snapshot and the country index used to discover Cricinfo venue pages. Use the existing venue endpoint for detailed ground profiles.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.cricinfo.com/cricket-grounds",
"total": 239,
"count": 1,
"grounds": [
{
"id": "56544",
"name": "Sydney Cricket Ground",
"slug": "sydney-cricket-ground",
"town": "Sydney",
"country": "Australia"
}
],
"countries": [
{
"id": "2",
"name": "Australia",
"slug": "australia"
}
]
}
}curl "https://api.crawlora.net/api/v1/cricinfo/grounds" \
-H "x-api-key: $CRAWLORA_API_KEY"