Feeds
ThesisLock publishes its on-chain event stream as standard feeds so you can follow new anchors, batches, group anchors, and proof mints in any reader, or pipe them into tools like Slack, Zapier, or IFTTT.
Endpoints
GET /api/feed/rss: RSS 2.0 (application/rss+xml).GET /api/feed/atom: Atom 1.0 (application/atom+xml).GET /api/feed/json: JSON Feed 1.1 (application/feed+json).
curl https://thesis-lock.vercel.app/api/feed/rssFiltering
All three endpoints accept the same query parameters:
?contract=<name>: only events from one contract (for examplebatch,groups,proof, or the full name likethesislock-batch).?address=<principal>: only events attributed to one wallet.?limit=<n>: how many recent events to include (up to 100, default 50).
curl "https://thesis-lock.vercel.app/api/feed/atom?contract=groups&limit=20"Autodiscovery
Every page advertises the RSS and Atom feeds with <link rel="alternate"> tags in the document head, so feed readers can find them from the site root automatically.
Programmatic alerts
For push-style integrations rather than polling, see the webhooks documentation, which describes the signed event payload format.