Endpoint Playground
Test Crawlora's Cricinfo photos 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/photos" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Maximum photos returned, from 1 to 100 |
{
"code": 200,
"msg": "OK",
"data": {
"total": 307125,
"count": 1,
"photos": [
{
"id": "1552237",
"url": "https://www.cricinfo.com/lsci/db/PICTURES/CMS/...jpg",
"caption": "Chris Jordan bowled two economical overs"
}
]
}
}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 bounded metadata for the latest public Cricinfo photos, including captions, credits, dimensions, dates, and image variants. Media files are not downloaded by the endpoint.
{
"code": 200,
"msg": "OK",
"data": {
"total": 307125,
"count": 1,
"photos": [
{
"id": "1552237",
"url": "https://www.cricinfo.com/lsci/db/PICTURES/CMS/...jpg",
"caption": "Chris Jordan bowled two economical overs"
}
]
}
}curl "https://api.crawlora.net/api/v1/cricinfo/photos" \
-H "x-api-key: $CRAWLORA_API_KEY"