getAllHighlights
Extract all highlights from your bookmarks in Raindrop.io, organized by page and per-page count, for efficient review and management.
Instructions
Get all highlights across all bookmarks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number, starting from 0 | |
perPage | No | Number of highlights per page (max 50) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "Page number, starting from 0",
"type": "number"
},
"perPage": {
"description": "Number of highlights per page (max 50)",
"type": "number"
}
},
"type": "object"
}