get_book_notes_and_highlights
Retrieve and organize book highlights and notes by chapter using a specified book ID. Customize results with chapter details, organization, and highlight style filters for structured reading insights.
Instructions
Get all highlights and notes for a specific book, organized by chapter
Input Schema
Name | Required | Description | Default |
---|---|---|---|
book_id | Yes | Book ID | |
highlight_style | No | Highlight style filter, null means all | |
include_chapters | No | Whether to include chapter information | |
organize_by_chapter | No | Whether to organize by chapter |
Input Schema (JSON Schema)
{
"properties": {
"book_id": {
"description": "Book ID",
"type": "string"
},
"highlight_style": {
"default": null,
"description": "Highlight style filter, null means all",
"type": [
"integer",
"null"
]
},
"include_chapters": {
"default": true,
"description": "Whether to include chapter information",
"type": "boolean"
},
"organize_by_chapter": {
"default": true,
"description": "Whether to organize by chapter",
"type": "boolean"
}
},
"required": [
"book_id"
],
"type": "object"
}