rotten-tomatoes.movie_reviews
ActiveTool of Vee3
Load reviews for a movie by slug (for example shawshank-redemption). 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_movie_reviewsArguments",
"required": [
"movie_slug"
],
"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."
},
"movie_slug": {
"type": "string",
"title": "Movie Slug",
"maxLength": 512,
"description": "Movie slug (for example shawshank-redemption)."
},
"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."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries