get_trending_shows
Discover trending TV shows based on daily or weekly popularity. Use the tool to fetch recommendations by specifying a time window and page number.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | 页码,默认为1 | |
time_window | No | 时间窗口,day表示日趋势,week表示周趋势,默认为week | week |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"default": 1,
"description": "页码,默认为1",
"type": "number"
},
"time_window": {
"default": "week",
"description": "时间窗口,day表示日趋势,week表示周趋势,默认为week",
"enum": [
"day",
"week"
],
"type": "string"
}
},
"type": "object"
}