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