get_book_best_reviews
Retrieve top-rated reviews for any book by specifying its ID and the desired number of reviews. Supports pagination for accessing additional results.
Instructions
Get popular reviews for a specific book
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| book_id | Yes | Book ID | |
| count | No | Number of reviews to return | |
| max_idx | No | Pagination index | |
| synckey | No | Sync key for pagination |
Input Schema (JSON Schema)
{
"properties": {
"book_id": {
"description": "Book ID",
"type": "string"
},
"count": {
"default": 10,
"description": "Number of reviews to return",
"type": "integer"
},
"max_idx": {
"default": 0,
"description": "Pagination index",
"type": "integer"
},
"synckey": {
"default": 0,
"description": "Sync key for pagination",
"type": "integer"
}
},
"required": [
"book_id"
],
"type": "object"
}