get_show_reviews
Retrieve viewer reviews for a specific TV show by providing the show title and optional page number. Ideal for analyzing audience feedback and improving TV recommendations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | 页码,默认为1 | |
show_title | Yes | 剧集名称,用于获取评论 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"default": 1,
"description": "页码,默认为1",
"type": "number"
},
"show_title": {
"description": "剧集名称,用于获取评论",
"type": "string"
}
},
"required": [
"show_title"
],
"type": "object"
}