Endpoint Playground
Test Crawlora's TMDB Movie 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/movie/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | TMDB movie id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "27205",
"title": "Inception",
"tagline": "Your mind is the scene of the crime.",
"overview": "Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \"inception\", the implantation of another person's idea into a target's subconscious.",
"release_date": "2010-07-15",
"year": 2010,
"runtime_minutes": 148,
"genres": [
"Action",
"Science Fiction",
"Adventure"
],
"countries": [
"United States",
"United Kingdom"
],
"status": "Released",
"original_language": "English",
"budget": 160000000,
"revenue": 839030630,
"homepage": "https://www.warnerbros.com/movies/inception",
"poster_url": "https://image.tmdb.org/t/p/w500/xlaY2zyzMfkhk0HSC5VUwzoZPU1.jpg",
"rating": {
"average": 8.372,
"count": 39524,
"review_count": 8
},
"top_crew": [
{
"name": "Christopher Nolan",
"slug": "525",
"jobs": [
"Director",
"Writer"
]
}
],
"cast": [
{
"name": "Leonardo DiCaprio",
"slug": "6193",
"character": "Dom Cobb"
}
],
"uri": "https://www.themoviedb.org/movie/27205-inception",
"source_url": "https://www.themoviedb.org/movie/27205"
}
}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 movie: overview, tagline, genres, countries, runtime, budget/revenue, top-billed cast, top crew (director/writer), and aggregate rating. Credential-free public TMDB data (themoviedb.org) — not the official api.themoviedb.org, which requires an API key.
{
"code": 200,
"msg": "OK",
"data": {
"id": "27205",
"title": "Inception",
"tagline": "Your mind is the scene of the crime.",
"overview": "Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \"inception\", the implantation of another person's idea into a target's subconscious.",
"release_date": "2010-07-15",
"year": 2010,
"runtime_minutes": 148,
"genres": [
"Action",
"Science Fiction",
"Adventure"
],
"countries": [
"United States",
"United Kingdom"
],
"status": "Released",
"original_language": "English",
"budget": 160000000,
"revenue": 839030630,
"homepage": "https://www.warnerbros.com/movies/inception",
"poster_url": "https://image.tmdb.org/t/p/w500/xlaY2zyzMfkhk0HSC5VUwzoZPU1.jpg",
"rating": {
"average": 8.372,
"count": 39524,
"review_count": 8
},
"top_crew": [
{
"name": "Christopher Nolan",
"slug": "525",
"jobs": [
"Director",
"Writer"
]
}
],
"cast": [
{
"name": "Leonardo DiCaprio",
"slug": "6193",
"character": "Dom Cobb"
}
],
"uri": "https://www.themoviedb.org/movie/27205-inception",
"source_url": "https://www.themoviedb.org/movie/27205"
}
}curl "https://api.crawlora.net/api/v1/tmdb/movie/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"