movie_reviews
Retrieve user reviews and ratings for movies to analyze public opinions and critiques for sentiment analysis.
Instructions
Retrieves user reviews and ratings for a movie. Input: movie_id (required TMDB ID), language (optional ISO 639-1 code), page (optional), region (optional ISO 3166-1 code). Output: JSON with paginated review results. Purpose: Access public opinions and critiques for sentiment analysis by AI agents.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | ISO 639-1 code (e.g., en-US) | |
movie_id | Yes | TMDB Movie ID | |
page | No | Page number | |
region | No | ISO 3166-1 region code (e.g., US) |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "ISO 639-1 code (e.g., en-US)",
"type": "string"
},
"movie_id": {
"description": "TMDB Movie ID",
"type": "number"
},
"page": {
"description": "Page number",
"minimum": 1,
"type": "number"
},
"region": {
"description": "ISO 3166-1 region code (e.g., US)",
"type": "string"
}
},
"required": [
"movie_id"
],
"type": "object"
}