Endpoint Playground
Test Crawlora's IMDb title images 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/images?type=behind_the_scenes" \
-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 | |
| type | string | No | behind_the_scenes | Image type filter, single value or comma-separated list |
| limit | integer | No | Rows to return, default 50, max 1000 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "tt0089753",
"title": "Holly - The Movie",
"types": [
"still_frame"
],
"limit": 50,
"url": "https://www.imdb.com/title/tt0089753/mediaindex/",
"total": 38,
"has_more": false,
"images": [
{
"id": "rm1894298369",
"url": "https://m.media-amazon.com/images/M/MV5BZjczNmIzMjEtYmM4MC00ZjQxLTk4NjctMTA2MzEzOWI3NWRhXkEyXkFqcGc@._V1_.jpg",
"width": 4032,
"height": 3024,
"type": "still_frame",
"caption": "Elisabeth Wiedemann in Holly - The Movie (1984)",
"position": 1,
"names": [
{
"id": "nm0927264",
"name": "Elisabeth Wiedemann",
"url": "https://www.imdb.com/name/nm0927264/"
}
]
}
]
}
}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 image metadata from a title's media index, including the original image URL, dimensions, caption and credited people. Filter by image type with `type`, which accepts a single value or a comma-separated list of: `behind_the_scenes`, `event`, `poster`, `product`, `production_art`, `publicity`, `still_frame`, `unknown`. Omit `type` to return every type. Limit defaults to 50 and clamps to 1000. Pass exactly one of `id` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "tt0089753",
"title": "Holly - The Movie",
"types": [
"still_frame"
],
"limit": 50,
"url": "https://www.imdb.com/title/tt0089753/mediaindex/",
"total": 38,
"has_more": false,
"images": [
{
"id": "rm1894298369",
"url": "https://m.media-amazon.com/images/M/MV5BZjczNmIzMjEtYmM4MC00ZjQxLTk4NjctMTA2MzEzOWI3NWRhXkEyXkFqcGc@._V1_.jpg",
"width": 4032,
"height": 3024,
"type": "still_frame",
"caption": "Elisabeth Wiedemann in Holly - The Movie (1984)",
"position": 1,
"names": [
{
"id": "nm0927264",
"name": "Elisabeth Wiedemann",
"url": "https://www.imdb.com/name/nm0927264/"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/imdb/title/images" \
-H "x-api-key: $CRAWLORA_API_KEY"