What You Can Do
| Capability | Endpoint | Description |
|---|---|---|
| Track Feed | POST /track/rss | Monitor an RSS feed for new entries |
| List Tracked | GET /track/rss | List all tracked RSS feeds |
| Untrack | DELETE /track/rss | Stop tracking a feed |
Track an RSS Feed
Start monitoring an RSS feed for new entries.The feed URL is base64-encoded internally and stored as the
externalId. You don’t need to encode it yourself — just pass the raw URL as the sid.List Tracked Feeds
Retrieve all RSS feeds you are currently tracking.Stop Tracking
Remove an RSS feed from your tracked sources. You can identify the source by its original URL (sid) or its internal ID (iid).
How It Works
RSS feeds are polled periodically. New entries trigger webhooks and stream events just like other sources — there is no difference in how you consume the data.
Delivery Methods
RSS events are delivered through all the same channels as other sources:- Webhooks — Push to your endpoint
- WebSocket — Real-time bidirectional stream
- SSE — Server-sent events with auto-reconnect
API Reference
- Create Tracking —
POST /track/rss - List Tracked Sources —
GET /track/rss - Delete Tracking —
DELETE /track/rss