Endpoint Playground
Test Crawlora's TMDB TV Show 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/tv/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | TMDB TV show id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "1396",
"title": "Breaking Bad",
"tagline": "Change the equation.",
"overview": "Walter White, a New Mexico chemistry teacher, is diagnosed with Stage III cancer and given a prognosis of only two years left to live. He becomes filled with a sense of fearlessness and an unrelenting desire to secure his family's financial future at any cost as he enters the dangerous world of drugs and crime.",
"first_air_year": 2008,
"last_air_year": 2013,
"number_of_episodes": 62,
"genres": [
"Drama",
"Crime"
],
"countries": [
"United States"
],
"status": "Ended",
"original_language": "English",
"homepage": "https://www.sonypictures.com/tv/breakingbad",
"poster_url": "https://image.tmdb.org/t/p/w500/ztkUQFLlC19CCMYHW9o1zWhJRNq.jpg",
"rating": {
"average": 8.9,
"count": 18088,
"review_count": 5
},
"top_crew": [
{
"name": "Vince Gilligan",
"slug": "66633",
"jobs": [
"Creator"
]
}
],
"cast": [
{
"name": "Bryan Cranston",
"slug": "17419",
"character": "Walter White"
}
],
"uri": "https://www.themoviedb.org/tv/1396-breaking-bad",
"source_url": "https://www.themoviedb.org/tv/1396"
}
}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 TV show: overview, tagline, genres, countries, episode count, first/last air year, top-billed cast, top crew (creator), and aggregate rating. Credential-free public TMDB data.
{
"code": 200,
"msg": "OK",
"data": {
"id": "1396",
"title": "Breaking Bad",
"tagline": "Change the equation.",
"overview": "Walter White, a New Mexico chemistry teacher, is diagnosed with Stage III cancer and given a prognosis of only two years left to live. He becomes filled with a sense of fearlessness and an unrelenting desire to secure his family's financial future at any cost as he enters the dangerous world of drugs and crime.",
"first_air_year": 2008,
"last_air_year": 2013,
"number_of_episodes": 62,
"genres": [
"Drama",
"Crime"
],
"countries": [
"United States"
],
"status": "Ended",
"original_language": "English",
"homepage": "https://www.sonypictures.com/tv/breakingbad",
"poster_url": "https://image.tmdb.org/t/p/w500/ztkUQFLlC19CCMYHW9o1zWhJRNq.jpg",
"rating": {
"average": 8.9,
"count": 18088,
"review_count": 5
},
"top_crew": [
{
"name": "Vince Gilligan",
"slug": "66633",
"jobs": [
"Creator"
]
}
],
"cast": [
{
"name": "Bryan Cranston",
"slug": "17419",
"character": "Walter White"
}
],
"uri": "https://www.themoviedb.org/tv/1396-breaking-bad",
"source_url": "https://www.themoviedb.org/tv/1396"
}
}curl "https://api.crawlora.net/api/v1/tmdb/tv/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"