Endpoint Playground
Test Crawlora's IMDb title video metadata 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/imdb/title/videos" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | IMDb title id | |
| url | string | No | Absolute https://www.imdb.com/title/<id>/ URL | |
| limit | integer | No | Rows to return, default 50, max 100 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "tt1375666",
"title": "Inception",
"limit": 50,
"url": "https://www.imdb.com/title/tt1375666/videogallery/",
"total": 35,
"has_more": true,
"videos": [
{
"id": "vi2959588889",
"title": "10th Anniversary Dream Trailer",
"content_type": "Trailer",
"duration_seconds": 105,
"thumbnail": {
"url": "https://m.media-amazon.com/images/M/example._V1_.jpg",
"width": 1905,
"height": 1071
},
"primary_title": {
"id": "tt1375666",
"title": "Inception",
"url": "https://www.imdb.com/title/tt1375666/"
},
"position": 1
}
]
}
}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 public title video metadata and thumbnail URLs only; playback URLs and media manifests are never returned. IMDb server-truncates this connection and exposes no usable continuation cursor, so `total` can exceed returned rows and `has_more` reports that condition. Limit defaults to 50 and clamps to 100. Pass exactly one of `id` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "tt1375666",
"title": "Inception",
"limit": 50,
"url": "https://www.imdb.com/title/tt1375666/videogallery/",
"total": 35,
"has_more": true,
"videos": [
{
"id": "vi2959588889",
"title": "10th Anniversary Dream Trailer",
"content_type": "Trailer",
"duration_seconds": 105,
"thumbnail": {
"url": "https://m.media-amazon.com/images/M/example._V1_.jpg",
"width": 1905,
"height": 1071
},
"primary_title": {
"id": "tt1375666",
"title": "Inception",
"url": "https://www.imdb.com/title/tt1375666/"
},
"position": 1
}
]
}
}curl "https://api.crawlora.net/api/v1/imdb/title/videos" \
-H "x-api-key: $CRAWLORA_API_KEY"