trending_all
Discover trending movies, TV shows, and people by time period to analyze current popularity patterns and generate media recommendations.
Instructions
Retrieves trending content across movies, TV shows, and people. 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 media for trend analysis and recommendations by AI agents.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_adult | No | ||
language | No | ||
page | No | ||
region | No | ||
time_window | Yes | Time window |
Input Schema (JSON Schema)
{
"properties": {
"include_adult": {
"type": "boolean"
},
"language": {
"type": "string"
},
"page": {
"minimum": 1,
"type": "number"
},
"region": {
"type": "string"
},
"time_window": {
"description": "Time window",
"enum": [
"day",
"week"
],
"type": "string"
}
},
"required": [
"time_window"
],
"type": "object"
}