discover_shows
Discover personalized TV show recommendations by filtering genres, release year, ratings, networks, keywords, and more to find shows tailored to your preferences.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
first_air_date_year | No | 首播年份,如2022 | |
page | No | 页码,默认为1 | |
sort_by | No | 排序方式,如"popularity.desc" | |
vote_average_gte | No | 最低评分,如8.0 | |
with_genres | No | 类型数组,如["喜剧", "科幻"] | |
with_keywords | No | 关键词数组,如["机器人", "太空"] | |
with_networks | No | 电视网络ID数组,如[213]表示Netflix | |
with_original_language | No | 原始语言,如"en"表示英语 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"first_air_date_year": {
"description": "首播年份,如2022",
"type": "number"
},
"page": {
"description": "页码,默认为1",
"type": "number"
},
"sort_by": {
"description": "排序方式,如\"popularity.desc\"",
"type": "string"
},
"vote_average_gte": {
"description": "最低评分,如8.0",
"type": "number"
},
"with_genres": {
"description": "类型数组,如[\"喜剧\", \"科幻\"]",
"items": {
"type": "string"
},
"type": "array"
},
"with_keywords": {
"description": "关键词数组,如[\"机器人\", \"太空\"]",
"items": {
"type": "string"
},
"type": "array"
},
"with_networks": {
"description": "电视网络ID数组,如[213]表示Netflix",
"items": {
"type": "number"
},
"type": "array"
},
"with_original_language": {
"description": "原始语言,如\"en\"表示英语",
"type": "string"
}
},
"type": "object"
}