list-movie-reviews
Retrieve reviews for a specific movie from Douban using its unique ID to analyze audience opinions and critical feedback.
Instructions
list movie reviews
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | douban movie id, e.g. "1234567890" |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "douban movie id, e.g. \"1234567890\"",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}