rotten-tomatoes.tv_show_season_reviews
ActiveTool of Vee3
Load reviews for a TV season by series slug (for example breaking-bad) and season number. Returns review quotes, sentiment, publication, critic details, and pageInfo for pagination. Use cursor from pageInfo.endCursor for the next page. Optionally set type to critic for critic reviews only. Cost = 5 tokens.
Parameters schema
{
"type": "object",
"title": "get_rotten_tomatoes_tv_show_season_reviewsArguments",
"required": [
"tv_show_slug",
"season_number"
],
"properties": {
"limit": {
"anyOf": [
{
"type": "integer",
"maximum": 50,
"minimum": 1
},
{
"type": "null"
}
],
"title": "Limit",
"default": null,
"description": "Maximum number of review pages to return (1–50, default 20)."
},
"cursor": {
"anyOf": [
{
"type": "string",
"maxLength": 4096
},
{
"type": "null"
}
],
"title": "Cursor",
"default": null,
"description": "Pagination cursor from a previous response pageInfo.endCursor field."
},
"review_type": {
"anyOf": [
{
"type": "string",
"maxLength": 32
},
{
"type": "null"
}
],
"title": "Review Type",
"default": null,
"description": "Review filter. Use critic for critic reviews; omit for the default set."
},
"tv_show_slug": {
"type": "string",
"title": "Tv Show Slug",
"maxLength": 512,
"description": "TV series slug (for example breaking-bad)."
},
"season_number": {
"type": "string",
"title": "Season Number",
"maxLength": 2,
"description": "Season number as one or two digits (for example 1 or 01)."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries