Endpoint Playground
Test Crawlora's IMDb title charts 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/charts?chart=top_rated_movies" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| chart | string | No | top_rated_movies | IMDb chart |
| limit | integer | No | Rows to return, default 25, max 250 |
{
"code": 200,
"msg": "OK",
"data": {
"chart": "top_rated_movies",
"limit": 25,
"source_url": "https://www.imdb.com/chart/top/",
"titles": [
{
"rank": 1,
"id": "tt0111161",
"title": "The Shawshank Redemption",
"url": "https://www.imdb.com/title/tt0111161/",
"year": 1994,
"rating_value": 9.3,
"rating_count": 3227390
}
]
}
}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 normalized rows from public IMDb title charts. Chart values: `top_rated_movies`, `top_rated_tv_shows`, `most_popular_movies`, `most_popular_tv_shows`, `top_rated_english_movies`, `lowest_rated_movies`.
{
"code": 200,
"msg": "OK",
"data": {
"chart": "top_rated_movies",
"limit": 25,
"source_url": "https://www.imdb.com/chart/top/",
"titles": [
{
"rank": 1,
"id": "tt0111161",
"title": "The Shawshank Redemption",
"url": "https://www.imdb.com/title/tt0111161/",
"year": 1994,
"rating_value": 9.3,
"rating_count": 3227390
}
]
}
}curl "https://api.crawlora.net/api/v1/imdb/charts" \
-H "x-api-key: $CRAWLORA_API_KEY"