Endpoint Playground
Test Crawlora's IMDb name 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/name/images?type=behind_the_scenes" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | IMDb name id | |
| url | string | No | Absolute https://www.imdb.com/name/<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": "nm0000151",
"name": "Morgan Freeman",
"types": [
"event"
],
"limit": 50,
"url": "https://www.imdb.com/name/nm0000151/mediaindex/",
"total": 280,
"has_more": true,
"images": [
{
"id": "rm3215753474",
"url": "https://m.media-amazon.com/images/M/MV5BMDgxZTdlOWUtOGMwMy00ODcwLTgwOWMtMDNiNTIwMWQ5ZDkyXkEyXkFqcGc@._V1_.jpg",
"width": 3600,
"height": 2400,
"type": "event",
"caption": "Morgan Freeman at an event",
"copyright": "2025 Lionsgate",
"position": 1,
"names": [
{
"id": "nm0000151",
"name": "Morgan Freeman",
"url": "https://www.imdb.com/name/nm0000151/"
}
]
}
]
}
}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 person'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": "nm0000151",
"name": "Morgan Freeman",
"types": [
"event"
],
"limit": 50,
"url": "https://www.imdb.com/name/nm0000151/mediaindex/",
"total": 280,
"has_more": true,
"images": [
{
"id": "rm3215753474",
"url": "https://m.media-amazon.com/images/M/MV5BMDgxZTdlOWUtOGMwMy00ODcwLTgwOWMtMDNiNTIwMWQ5ZDkyXkEyXkFqcGc@._V1_.jpg",
"width": 3600,
"height": 2400,
"type": "event",
"caption": "Morgan Freeman at an event",
"copyright": "2025 Lionsgate",
"position": 1,
"names": [
{
"id": "nm0000151",
"name": "Morgan Freeman",
"url": "https://www.imdb.com/name/nm0000151/"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/imdb/name/images" \
-H "x-api-key: $CRAWLORA_API_KEY"