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&sort_by=popularity.desc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | No | popular | TV chart, default popular |
| page | integer | No | 1-based page, default 1 | |
| sort_by | string | No | popularity.desc | Sort order |
| with_genres | string | No | Comma- or pipe-separated TV genre ids: 10759,16,35,80,99,18,10751,10762,9648,10763,10764,10765,10766,10767,10768,37 | |
| original_language | string | No | Two-letter original-language code | |
| date_from | string | No | First-air date lower bound (YYYY-MM-DD) | |
| date_to | string | No | First-air date upper bound (YYYY-MM-DD) | |
| min_rating | number | No | Minimum rating, 0-10 | |
| max_rating | number | No | Maximum rating, 0-10 | |
| min_votes | integer | No | Minimum vote count | |
| min_runtime | integer | No | Minimum runtime in minutes | |
| max_runtime | integer | No | Maximum runtime in minutes | |
| include_adult | boolean | No | Include adult titles | |
| limit | integer | No | Max shows, default 10, max 20 |
{
"code": 200,
"msg": "OK",
"data": {
"category": "airing_today",
"page": 2,
"has_next_page": true,
"shows": [
{
"id": "1396",
"title": "Breaking Bad",
"uri": "https://www.themoviedb.org/tv/1396-breaking-bad"
}
],
"source_url": "https://www.themoviedb.org/tv/airing-today?page=2"
}
}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": "airing_today",
"page": 2,
"has_next_page": true,
"shows": [
{
"id": "1396",
"title": "Breaking Bad",
"uri": "https://www.themoviedb.org/tv/1396-breaking-bad"
}
],
"source_url": "https://www.themoviedb.org/tv/airing-today?page=2"
}
}curl "https://api.crawlora.net/api/v1/tmdb/tv/list" \
-H "x-api-key: $CRAWLORA_API_KEY"