get_popular_shows
Retrieve popular TV shows with simple pagination for easy navigation and discovery of trending content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | 页码,默认为1 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"default": 1,
"description": "页码,默认为1",
"type": "number"
}
},
"type": "object"
}