list_documents
Retrieve a list of documents from your Readwise Reader library using filters like folder location, update time, and HTML content inclusion, with pagination support for efficient browsing and organization.
Instructions
Get the document list via the Reader API.
Args:
location: The folder where the document is located, supports 'new', 'later', 'shortlist', 'archive', 'feed' (optional)
updatedAfter: Filter by update time (optional, ISO8601)
withContent: Whether to include HTML content (optional, default false)
pageCursor: Pagination cursor (optional)
Returns:
Document list JSON
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | No | The folder where the document is located, supports 'new', 'later', 'shortlist', 'archive', 'feed' | |
pageCursor | No | Pagination cursor | |
updatedAfter | No | Filter by update time (ISO8601) | |
withContent | No | Whether to include HTML content |
Input Schema (JSON Schema)
{
"properties": {
"location": {
"anyOf": [
{
"enum": [
"new",
"later",
"shortlist",
"archive",
"feed"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The folder where the document is located, supports 'new', 'later', 'shortlist', 'archive', 'feed'",
"title": "Location"
},
"pageCursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Pagination cursor",
"title": "Pagecursor"
},
"updatedAfter": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by update time (ISO8601)",
"title": "Updatedafter"
},
"withContent": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": false,
"description": "Whether to include HTML content",
"title": "Withcontent"
}
},
"title": "list_documentsArguments",
"type": "object"
}