What You Can Do
| Capability | Endpoint | Description |
|---|---|---|
| Track Website | POST /track/web | Monitor a website URL for changes |
| Web Scraping | POST /scrape | Scrape any public URL for raw HTML |
| List Tracked | GET /track/web | List all tracked websites |
| Untrack | DELETE /track/web | Stop tracking a website |
Track a Website
Start monitoring a website URL for content changes.Web Scraping
Scrape any public URL and get the raw HTML content back. This is a one-off request — no tracking required.This endpoint is rate-limited to 10 requests per 60 seconds per API key.
List Tracked Websites
Retrieve all websites you are currently tracking.Stop Tracking
Remove a website from your tracked sources. You can identify the source by its original URL (sid) or its internal ID (iid).
Delivery Methods
Web change 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/web - List Tracked Sources —
GET /track/web - Delete Tracking —
DELETE /track/web