readwise_create_highlight
Manually create and save highlights in Readwise for books, articles, tweets, and podcasts. Add text, notes, source details, and locations to organize and reference key insights effectively.
Instructions
Create new highlights manually in Readwise
Input Schema
Name | Required | Description | Default |
---|---|---|---|
highlights | Yes | Array of highlights to create |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"highlights": {
"description": "Array of highlights to create",
"items": {
"properties": {
"author": {
"description": "Author of the source",
"type": "string"
},
"category": {
"description": "Category of the source",
"enum": [
"books",
"articles",
"tweets",
"podcasts"
],
"type": "string"
},
"highlighted_at": {
"description": "When the highlight was made (ISO 8601)",
"type": "string"
},
"location": {
"description": "Location in the source (page number, position, etc.)",
"type": "number"
},
"location_type": {
"description": "Type of location reference",
"enum": [
"page",
"order",
"time_offset"
],
"type": "string"
},
"note": {
"description": "Personal note or annotation for the highlight",
"type": "string"
},
"source_type": {
"description": "Unique identifier for your app/source",
"type": "string"
},
"source_url": {
"description": "URL of the original source",
"type": "string"
},
"text": {
"description": "The highlight text (required)",
"type": "string"
},
"title": {
"description": "Title of the source book/article",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"highlights"
],
"type": "object"
}