Coming soonWebhooks are in design. This page will be updated at launch.
Webhooks
Subscribe to Reedle library events and react in real time. When a user saves an article, creates a highlight, or finishes reading — your server gets notified.
What webhooks enable
- Sync highlights to Notion or Obsidian as they're created
- Trigger a pipeline when a new paper is added to a list
- Update an external DB when article reading progress changes
- Build automation workflows without polling
Planned events
| Event | Fires when |
|---|---|
article.saved | A new article is added to the library |
article.read | An article is marked as read |
highlight.created | A new highlight is created |
highlight.updated | A highlight's text or note is changed |
list.article_added | An article is added to a list |
Planned auth
Webhook delivery will use a shared secret in the Authorization: Bearer header. You verify it on your server to confirm the request comes from Reedle.
In the meantime
For real-time library access today, the MCP server lets AI agents query your library on demand. For event-driven automation without webhooks, consider polling the Library API (coming soon).