API & RSS
Every digest is published as a feed and a small JSON API so other apps and colleagues can read it. Everything here is public: no account, no API key, no rate limit.
RSS feed
Paste this into any reader (Feedly, NetNewsWire, Inoreader, Reeder):
https://oncbrain.oncologytoolkit.com/feed.xml One item per study, newest first (latest 30). Each item carries the study name, the standard-of-care verdict, the eligibility audience, and the one-line TL;DR, linked back to its day on this site.
JSON API
Versioned under /api/v1/ so the response shape stays stable.
Every payload includes an api_version field. Start at the index
and follow links from there.
-
/api/v1/digests.json
Index of every published day, with study and site counts. -
/api/v1/digest/<date>.json
One full day. Studies, sources, and per-study verdicts. Example:2026-05-20. -
/api/v1/study/<slug>.json
One study across every date it was covered. Example:pbs-proton-capsular-contracture-pmrt.
Notes for developers
- No CORS header yet. Server-side fetches, scripts, and
feed readers work from anywhere. A browser app on another domain calling
fetch()will be blocked until a cross-origin header is added. Ask the curator if you need it. - Summaries only. The API serves titles, abstracts, and AI summaries. It never serves full-text PDFs or other copyrighted source material.
- Static and cached. Files regenerate when the digest rebuilds (daily during meetings), so expect a short edge-cache delay after a new day publishes.