Endpoint Playground
Test Crawlora's TMDB Search 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/search?query=<query>&type=movie" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Search query | |
| type | string | No | movie | Optional result type filter |
| limit | integer | No | Max results, default 10, max 20 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "batman",
"results": [
{
"type": "movie",
"id": "268",
"title": "Batman",
"release_date": "June 21, 1989",
"overview": "Having witnessed his parents' brutal murder as a child, mill...",
"uri": "https://www.themoviedb.org/movie/268-batman"
},
{
"type": "tv",
"id": "2287",
"title": "Batman",
"release_date": "January 12, 1966",
"uri": "https://www.themoviedb.org/tv/2287-batman"
},
{
"type": "person",
"id": "3568848",
"title": "batman",
"uri": "https://www.themoviedb.org/person/3568848-batman"
}
],
"source_url": "https://www.themoviedb.org/search?query=batman"
}
}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.
Searches TMDB movies, TV shows, and people. An unscoped query interleaves results across all three types rather than returning whichever type happens to rank first upstream. Credential-free public TMDB data.
{
"code": 200,
"msg": "OK",
"data": {
"query": "batman",
"results": [
{
"type": "movie",
"id": "268",
"title": "Batman",
"release_date": "June 21, 1989",
"overview": "Having witnessed his parents' brutal murder as a child, mill...",
"uri": "https://www.themoviedb.org/movie/268-batman"
},
{
"type": "tv",
"id": "2287",
"title": "Batman",
"release_date": "January 12, 1966",
"uri": "https://www.themoviedb.org/tv/2287-batman"
},
{
"type": "person",
"id": "3568848",
"title": "batman",
"uri": "https://www.themoviedb.org/person/3568848-batman"
}
],
"source_url": "https://www.themoviedb.org/search?query=batman"
}
}curl "https://api.crawlora.net/api/v1/tmdb/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"