trending_movies
Discover currently popular movies by retrieving trending titles from The Movie Database for daily or weekly trend analysis.
Instructions
Retrieves trending movies. Input: time_window (required: day|week), page (optional), language (optional ISO 639-1), region (optional ISO 3166-1), include_adult (optional boolean). Output: JSON with paginated trending results. Purpose: Discover currently popular movies for trend analysis by AI agents.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_adult | No | ||
| language | No | ||
| page | No | ||
| region | No | ||
| time_window | Yes |
Input Schema (JSON Schema)
{
"properties": {
"include_adult": {
"type": "boolean"
},
"language": {
"type": "string"
},
"page": {
"minimum": 1,
"type": "number"
},
"region": {
"type": "string"
},
"time_window": {
"enum": [
"day",
"week"
],
"type": "string"
}
},
"required": [
"time_window"
],
"type": "object"
}