readwise_save_document
Save articles, PDFs, or other content from URLs or HTML to Readwise Reader, tagging and organizing them into categories like articles, books, or podcasts for easy access.
Instructions
Save a document (URL or HTML content) to Readwise Reader
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Category of the document (auto-detected if not specified) | |
html | No | HTML content of the document (optional) | |
location | No | Location to save the document (default: new) | |
tags | No | Tags to add to the document | |
url | Yes | URL of the document to save |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"category": {
"description": "Category of the document (auto-detected if not specified)",
"enum": [
"article",
"book",
"tweet",
"pdf",
"email",
"youtube",
"podcast"
],
"type": "string"
},
"html": {
"description": "HTML content of the document (optional)",
"type": "string"
},
"location": {
"description": "Location to save the document (default: new)",
"enum": [
"new",
"later",
"shortlist",
"archive",
"feed"
],
"type": "string"
},
"tags": {
"description": "Tags to add to the document",
"items": {
"type": "string"
},
"type": "array"
},
"url": {
"description": "URL of the document to save",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}