Endpoint Playground
Test Crawlora's TMDB Collection 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/tmdb/collection/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | TMDB collection id or id-slug |
{
"code": 200,
"msg": "OK",
"data": {
"id": "263",
"title": "The Dark Knight Collection",
"overview": "Christopher Nolan's dark, gritty portrayal of Bruce Wayne...",
"movies": [
{
"id": "272",
"title": "Batman Begins",
"uri": "https://www.themoviedb.org/movie/272-batman-begins"
}
],
"uri": "https://www.themoviedb.org/collection/263",
"source_url": "https://www.themoviedb.org/collection/263"
}
}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 normalized TMDB collection (franchise grouping), including its overview and server-rendered member movies. Credential-free public TMDB data.
{
"code": 200,
"msg": "OK",
"data": {
"id": "263",
"title": "The Dark Knight Collection",
"overview": "Christopher Nolan's dark, gritty portrayal of Bruce Wayne...",
"movies": [
{
"id": "272",
"title": "Batman Begins",
"uri": "https://www.themoviedb.org/movie/272-batman-begins"
}
],
"uri": "https://www.themoviedb.org/collection/263",
"source_url": "https://www.themoviedb.org/collection/263"
}
}curl "https://api.crawlora.net/api/v1/tmdb/collection/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"