readwise_get_book_highlights
Extract and retrieve all highlights from a specific book using the book ID. Simplifies access to key insights and annotations for efficient review and knowledge management.
Instructions
Get all highlights from a specific book
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bookId | Yes | The ID of the book to get highlights from |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"bookId": {
"description": "The ID of the book to get highlights from",
"type": "number"
}
},
"required": [
"bookId"
],
"type": "object"
}