trending_people
Discover currently popular actors, directors, and other entertainment professionals by retrieving trending people data for daily or weekly analysis.
Instructions
Retrieves trending people (actors, directors, etc.). Input: time_window (required: day|week), page (optional), language (optional ISO 639-1). Output: JSON with paginated trending results. Purpose: Discover currently popular people for trend analysis by AI agents.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | ||
page | No | ||
time_window | Yes |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"type": "string"
},
"page": {
"minimum": 1,
"type": "number"
},
"time_window": {
"enum": [
"day",
"week"
],
"type": "string"
}
},
"required": [
"time_window"
],
"type": "object"
}