Endpoint Playground
Test Crawlora's IMDb title episodes 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/episodes?id=tt0944947&url=https%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0944947%2F&season=1&limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | tt0944947 | IMDb title id |
| url | string | No | https://www.imdb.com/title/tt0944947/ | Absolute https://www.imdb.com/title/<id>/ URL |
| season | integer | No | 1 | Season number to request |
| limit | integer | No | 10 | Rows to return, default 10, max 20 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "tt0944947",
"season": 1,
"limit": 10,
"episodes": [
{
"id": "tt1480055",
"title": "Winter Is Coming",
"url": "https://www.imdb.com/title/tt1480055/",
"season": 1,
"episode": 1,
"air_date": "17 Apr 2011",
"rating_value": 8.9,
"rating_count": 52000
}
],
"public_page_derived": true
}
}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 public IMDb episode rows for a series title. Limit defaults to 10 and clamps to 20. Optional `season` filters the upstream episodes page. Pass exactly one of `id` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "tt0944947",
"season": 1,
"limit": 10,
"episodes": [
{
"id": "tt1480055",
"title": "Winter Is Coming",
"url": "https://www.imdb.com/title/tt1480055/",
"season": 1,
"episode": 1,
"air_date": "17 Apr 2011",
"rating_value": 8.9,
"rating_count": 52000
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/imdb/title/episodes" \
-H "x-api-key: $CRAWLORA_API_KEY"