Endpoint Playground
Test Crawlora's TMDB Browse Genres 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/genres" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"movie": [
{
"id": "28",
"name": "Action"
},
{
"id": "18",
"name": "Drama"
}
],
"tv": [
{
"id": "16",
"name": "Animation"
},
{
"id": "10765",
"name": "Sci-Fi & Fantasy"
}
],
"source_url": "https://www.themoviedb.org/movie"
}
}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 every genre ID advertised by TMDB's public movie and TV browse pages. Use movie values only with movie list filters and TV values only with TV list filters. Credential-free public TMDB data.
{
"code": 200,
"msg": "OK",
"data": {
"movie": [
{
"id": "28",
"name": "Action"
},
{
"id": "18",
"name": "Drama"
}
],
"tv": [
{
"id": "16",
"name": "Animation"
},
{
"id": "10765",
"name": "Sci-Fi & Fantasy"
}
],
"source_url": "https://www.themoviedb.org/movie"
}
}curl "https://api.crawlora.net/api/v1/tmdb/genres" \
-H "x-api-key: $CRAWLORA_API_KEY"