Endpoint Playground
Test Crawlora's Cricinfo videos 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/videos" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Maximum videos returned, from 1 to 100 |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.cricinfo.com/ci/content/video_audio/index.html",
"count": 1,
"videos": [
{
"id": "1552208",
"url": "https://www.cricinfo.com/cricket-videos/example-1552208",
"title": "Match analysis",
"duration_seconds": 180,
"published_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 a bounded snapshot of Cricinfo's public video hub, including curated, trending, and genre-associated video metadata. Media files are not downloaded by the endpoint.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.cricinfo.com/ci/content/video_audio/index.html",
"count": 1,
"videos": [
{
"id": "1552208",
"url": "https://www.cricinfo.com/cricket-videos/example-1552208",
"title": "Match analysis",
"duration_seconds": 180,
"published_at": "2026-08-30T10:00:00Z"
}
]
}
}curl "https://api.crawlora.net/api/v1/cricinfo/videos" \
-H "x-api-key: $CRAWLORA_API_KEY"