Endpoint Playground
Test Crawlora's Cricinfo cricket-ground profile 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/venue?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical Cricinfo cricket-ground URL |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.cricinfo.com/cricket-grounds/wankhede-stadium-mumbai-58324",
"venue": {
"id": "58324",
"name": "Wankhede Stadium",
"town": "Mumbai",
"country": "India",
"capacity": "32,000",
"established": "1974",
"floodlights": "Yes",
"pitch": "Grass",
"has_stats": true
},
"profile": [
"Mumbai, the traditional cricket capital of India, has hosted Test matches at three different grounds."
],
"home_teams": [
{
"id": "1654",
"name": "Mumbai",
"country": "India",
"abbreviation": "MUM"
}
],
"fetched_at": "2026-08-30T10:00:00Z"
}
}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 structured metadata, associated home teams, and the editorial profile for a public Cricinfo cricket-ground page. `url` must be a canonical `https://www.cricinfo.com/cricket-grounds/...` or legacy `/ci/content/ground/...html` URL.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.cricinfo.com/cricket-grounds/wankhede-stadium-mumbai-58324",
"venue": {
"id": "58324",
"name": "Wankhede Stadium",
"town": "Mumbai",
"country": "India",
"capacity": "32,000",
"established": "1974",
"floodlights": "Yes",
"pitch": "Grass",
"has_stats": true
},
"profile": [
"Mumbai, the traditional cricket capital of India, has hosted Test matches at three different grounds."
],
"home_teams": [
{
"id": "1654",
"name": "Mumbai",
"country": "India",
"abbreviation": "MUM"
}
],
"fetched_at": "2026-08-30T10:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/cricinfo/venue?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"