Endpoint Playground
Test Crawlora's IMDb title connections 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/connections" \
-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 | |
| limit | integer | No | Rows to return, default 50, max 250 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "tt0111161",
"title": "The Shawshank Redemption",
"limit": 50,
"url": "https://www.imdb.com/title/tt0111161/",
"total": 999,
"has_more": true,
"connections": [
{
"category": "Featured in",
"note": "Clips appear in the teaser for next week's show.",
"associated_title": {
"id": "tt1936736",
"title": "Why Gump? Why Now?",
"url": "https://www.imdb.com/title/tt1936736/",
"title_type": "TV Episode",
"year": 1994
}
}
]
}
}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 a bounded slice of a title's public connections: other titles it references or is referenced by, such as remakes, spin-offs, "featured in" clips, and "edited into" compilations. `category` is upstream-supplied free text, not a closed enum. IMDb's connections list can run to hundreds or thousands of rows, so `total` can exceed the returned rows and `has_more` reports that condition. Limit defaults to 50 and clamps to 250. Pass exactly one of `id` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "tt0111161",
"title": "The Shawshank Redemption",
"limit": 50,
"url": "https://www.imdb.com/title/tt0111161/",
"total": 999,
"has_more": true,
"connections": [
{
"category": "Featured in",
"note": "Clips appear in the teaser for next week's show.",
"associated_title": {
"id": "tt1936736",
"title": "Why Gump? Why Now?",
"url": "https://www.imdb.com/title/tt1936736/",
"title_type": "TV Episode",
"year": 1994
}
}
]
}
}curl "https://api.crawlora.net/api/v1/imdb/title/connections" \
-H "x-api-key: $CRAWLORA_API_KEY"