getBookmarks
Retrieve your saved bookmarks from Raindrop.io with customizable filters like tags, search, sorting, and pagination for efficient organization and access.
Instructions
Get bookmarks with optional filtering
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | No | Collection ID | |
page | No | Page number | |
perPage | No | Items per page (max 50) | |
search | No | Search query | |
sort | No | Sort order | |
tags | No | Filter by tags |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"collection": {
"description": "Collection ID",
"type": "number"
},
"page": {
"description": "Page number",
"type": "number"
},
"perPage": {
"description": "Items per page (max 50)",
"type": "number"
},
"search": {
"description": "Search query",
"type": "string"
},
"sort": {
"description": "Sort order",
"enum": [
"title",
"-title",
"domain",
"-domain",
"created",
"-created",
"lastUpdate",
"-lastUpdate"
],
"type": "string"
},
"tags": {
"description": "Filter by tags",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}