PUBLIC · READ-ONLY · NO KEYS
DATA & API
The scoreboard’s own API, open to everyone. Every value is computed from named public sources (DexScreener, GeckoTerminal, Yahoo Finance, SEC EDGAR, Solana RPC) and carries the real timestamp of its fetch — see the methodology. Rate limit: 120 requests/minute per IP. Machine-readable spec: /openapi.json.
GET/api/acquisition
The live snapshot: $TAKE and STKE market caps, acquisition progress, remaining amount, the parody state, per-side sources and real fetch timestamps. `take` is null and `live` is false before launch.
curl -s http://localhost:3000/api/acquisition | jq '{pct: .progressPct, state, take: .take.marketCapUsd, stke: .stke.marketCapUsd}'GET/api/history?range=7d
Both market caps merged onto one timeline (ranges: 24h, 7d, 30d, all). STKE forward-fills outside Nasdaq trading hours; `pct` is present where both sides exist.
curl -s "http://localhost:3000/api/history?range=30d" | jq '.points | length'
GET/api/holders
THE ACQUIRERS: largest on-chain $TAKE positions with honorary deal-team titles. Empty with `live: false` before launch.
curl -s http://localhost:3000/api/holders | jq '.entries[0]'
GET/api/healthz
Readiness of the data plane, per source: ok · stale · pre-launch · unavailable. 503 when fully down.
curl -s http://localhost:3000/api/healthz
POST/api/event
North-star event beacon used by the site UI (share_intent, buy_click, client_error). Cookieless, no storage — events become server log lines. 1KB body cap.
curl -s -X POST http://localhost:3000/api/event -H "content-type: application/json" -d '{"event":"share_intent"}' -o /dev/null -w "%{http_code}"GET/api/og/snapshot
The shareable acquisition snapshot card (1200×630 PNG), generated live with the disclaimer baked in.
curl -s http://localhost:3000/api/og/snapshot -o snapshot.png
A thin TypeScript client lives in the repository under sdk/ts. The API describes a parody acquisition; see the disclaimer.