get_recommendations_by_actor
Discover TV show recommendations based on a specific actor. Input the actor's name to receive a curated list of shows, with an option to limit the number of results. Ideal for finding new series featuring your favorite actors.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actor_name | Yes | 演员名称,如"布莱恩·科兰斯顿"、"安东尼·斯塔尔"等 | |
limit | No | 返回结果数量限制,默认为10 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"actor_name": {
"description": "演员名称,如\"布莱恩·科兰斯顿\"、\"安东尼·斯塔尔\"等",
"type": "string"
},
"limit": {
"default": 10,
"description": "返回结果数量限制,默认为10",
"type": "number"
}
},
"required": [
"actor_name"
],
"type": "object"
}