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" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | No | popular | Movie chart, default popular |
| limit | integer | No | Max movies, default 10, max 20 |
{
"code": 200,
"msg": "OK",
"data": {
"category": "top_rated",
"movies": [
{
"id": "278",
"title": "The Shawshank Redemption",
"uri": "https://www.themoviedb.org/movie/278-the-shawshank-redemption"
},
{
"id": "238",
"title": "The Godfather",
"uri": "https://www.themoviedb.org/movie/238-the-godfather"
}
],
"source_url": "https://www.themoviedb.org/movie/top-rated"
}
}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": "top_rated",
"movies": [
{
"id": "278",
"title": "The Shawshank Redemption",
"uri": "https://www.themoviedb.org/movie/278-the-shawshank-redemption"
},
{
"id": "238",
"title": "The Godfather",
"uri": "https://www.themoviedb.org/movie/238-the-godfather"
}
],
"source_url": "https://www.themoviedb.org/movie/top-rated"
}
}curl "https://api.crawlora.net/api/v1/tmdb/movie/list" \
-H "x-api-key: $CRAWLORA_API_KEY"