Endpoint Playground
Test Crawlora's TMDB TV List 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/list?category=popular" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | No | popular | TV chart, default popular |
| limit | integer | No | Max shows, default 10, max 20 |
{
"code": 200,
"msg": "OK",
"data": {
"category": "on_the_air",
"shows": [
{
"id": "94997",
"title": "House of the Dragon",
"uri": "https://www.themoviedb.org/tv/94997-house-of-the-dragon"
},
{
"id": "125988",
"title": "Silo",
"uri": "https://www.themoviedb.org/tv/125988-silo"
}
],
"source_url": "https://www.themoviedb.org/tv/on-the-air"
}
}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 TMDB TV chart (popular, top rated, airing today, or on the air). Credential-free public TMDB data.
{
"code": 200,
"msg": "OK",
"data": {
"category": "on_the_air",
"shows": [
{
"id": "94997",
"title": "House of the Dragon",
"uri": "https://www.themoviedb.org/tv/94997-house-of-the-dragon"
},
{
"id": "125988",
"title": "Silo",
"uri": "https://www.themoviedb.org/tv/125988-silo"
}
],
"source_url": "https://www.themoviedb.org/tv/on-the-air"
}
}curl "https://api.crawlora.net/api/v1/tmdb/tv/list" \
-H "x-api-key: $CRAWLORA_API_KEY"