Endpoint Playground
Test Crawlora's IMDb image types 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/image-types" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"total": 8,
"types": [
{
"type": "behind_the_scenes",
"label": "Behind The Scenes",
"description": "On-set and production photography."
},
{
"type": "still_frame",
"label": "Still Frame",
"description": "A frame captured from the production itself."
}
]
}
}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.
Lists every value the `type` parameter of the IMDb image endpoints accepts: `behind_the_scenes`, `event`, `poster`, `product`, `production_art`, `publicity`, `still_frame`, `unknown`. Each row carries a display label and a short description.
{
"code": 200,
"msg": "OK",
"data": {
"total": 8,
"types": [
{
"type": "behind_the_scenes",
"label": "Behind The Scenes",
"description": "On-set and production photography."
},
{
"type": "still_frame",
"label": "Still Frame",
"description": "A frame captured from the production itself."
}
]
}
}curl "https://api.crawlora.net/api/v1/imdb/image-types" \
-H "x-api-key: $CRAWLORA_API_KEY"