Endpoint Playground
Test Crawlora's TMDB Movie 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/movie/list?category=popular&sort_by=popularity.desc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | No | popular | Movie 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 movie genre ids: 28,12,16,35,80,99,18,10751,14,36,27,10402,9648,10749,878,10770,53,10752,37 | |
| original_language | string | No | Two-letter original-language code | |
| date_from | string | No | Release date lower bound (YYYY-MM-DD) | |
| date_to | string | No | Release 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 movies, default 10, max 20 |
{
"code": 200,
"msg": "OK",
"data": {
"category": "now_playing",
"page": 2,
"has_next_page": true,
"movies": [
{
"id": "986056",
"title": "Thunderbolts*",
"uri": "https://www.themoviedb.org/movie/986056-thunderbolts"
}
],
"source_url": "https://www.themoviedb.org/movie/now-playing?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 movie chart (popular, top rated, now playing, or upcoming). Credential-free public TMDB data.
{
"code": 200,
"msg": "OK",
"data": {
"category": "now_playing",
"page": 2,
"has_next_page": true,
"movies": [
{
"id": "986056",
"title": "Thunderbolts*",
"uri": "https://www.themoviedb.org/movie/986056-thunderbolts"
}
],
"source_url": "https://www.themoviedb.org/movie/now-playing?page=2"
}
}curl "https://api.crawlora.net/api/v1/tmdb/movie/list" \
-H "x-api-key: $CRAWLORA_API_KEY"