Three calls. One event feed.
Scoopkit is a REST API that collapses duplicate AI-industry headlines into one structured event.
- The primary resource is the event, not the raw article.
- Magic-link email → plaintext key once → X-Api-Key header.
- Free: 100 requests/day · 45-day archive.
- MCP server for AI agents at api.scoopkit.dev/mcp.
- Official CLI:
npx scoopkit login, no install required. - Not Rivet. Not agentOS. API-first events engine.
session · start
- $ POST /v1/auth/magic-link {"email":"you@company.com"} → check inbox → open verify link
- $ export SCOOPKIT_KEY='sc_live_…' shown once · header X-Api-Key
- $ GET /v1/events?limit=5 -H "X-Api-Key: $SCOOPKIT_KEY"
{
{
"id": "evt_…",
"headline": "OpenAI releases new frontier model",
"article_count": 40,
"subcategory": "MODEL_RELEASE",
"reported_at": "2026-07-28T12:00:00Z"
}
OpenAPI:
https://api.scoopkit.dev/openapi.json
· MCP: api.scoopkit.dev/mcp
· CLI: npx scoopkit
Local / ops
Engineers: seed or CLI mint via
uv run python -m scoopkit.scripts.create_api_key. Base URL
local http://localhost:8000. Full notes in repo
docs/public/getting-started.md.