Developer API
Free, open JSON API. No key required. CORS-enabled. ~5-minute cache.
v1Not financial advice
GET /api/v1/editionLatest edition — market summary + every coin brief.
GET /api/v1/edition/{date}A specific day's edition (date as YYYY-MM-DD).
GET /api/v1/coin/{slug}A single coin's latest brief (e.g. bitcoin, ethereum, solana).
GET /api/v1/breakingCurrent breaking alerts (high-impact events).
GET /api/v1/coinsTracked coins + available edition dates.
GET /api/v1/scan?address={addr}&chain={chain}Token safety scan (rug/honeypot/etc.).
Example
curl https://morning-brief-agrvasu05s-projects.vercel.app/api/v1/edition
{
"date": "2026-06-22",
"market": { "headline": "...", "summary": "...", "what_to_watch": "..." },
"coins": [
{
"coin": { "symbol": "BTC", "slug": "bitcoin" },
"headline": "...",
"summary": "...",
"items": [{ "sentiment": "bearish", "text": "...", "source": "CoinDesk" }],
"what_to_watch": "..."
}
]
}