Public API

Free, no-auth, rate-limited JSON. No key, no signup — the same delayed liquidation tape and measured track record this site publishes, for integrations, research, and independent verification.

The honesty contract. Liquidation tape endpoints are delayed 15 minutes — real-time data and the full tracked universe live behind the dashboard and the paid B2B API (/docs). Every accuracy figure is a descriptive measurement of past performance with its sample size (n) and a Wilson 95% lower confidence bound. Never a forecast, never financial advice.

Rate limits

Endpoints

/api/public/liq_teaserGET

Liquidation tape teaser (majors)

Paramsnone
Response fieldsok, delayed_minutes, window_hours, generated_at, note; totals_24h{events, usd, long_usd, short_usd, largest_single_usd}; majors_24h[] per symbol (BTC/ETH/SOL/XRP); tape[] — last 40 delayed events ≥ $5k {ts, exchange, symbol, side, price, usd}
NotesCross-exchange liquidation tape, majors only, delayed 15 minutes. Descriptive history, not a forecast. 60s server cache.

/api/public/coin_teaser/BTCUSDTGET

Per-coin liquidation snapshot

Paramspath: {symbol} — any tracked perp symbol (e.g. BTCUSDT, ETHUSDT; the tracked universe is the /coins/* page set). Unknown symbols 404 (symbol_not_tracked); malformed symbols 404 (invalid_symbol).
Response fieldsok, symbol, delayed_minutes, window_hours, note, events_24h, usd_24h, long_usd_24h, short_usd_24h, largest_single_usd; tape[] — last 20 delayed events ≥ $5k {ts, exchange, side, price, usd}
NotesDelayed 120 minutes on the free surface (the live free-tier delay — longer than the majors teaser). Stricter 60/min per-IP bucket (see rate limits).

/proof/statsGET

Live accuracy track record

Paramsnone
Response fieldsok, generated_at, basis, random_baseline, window, headline, global, per-symbol governed blocks — every precision figure carries its sample size n and a Wilson 95% lower confidence bound (ci95_low / wilson_low)
NotesWalk-forward, out-of-sample, de-overlapped. The same payload that powers the /proof page. 5-min server cache.

/proof/evidenceGET

Full accuracy evidence (download)

Paramsnone
Response fieldsok, generated_at, what_this_is, verify_independently, ledger (complete published per-symbol accuracy ledger), headline_history (last 500 points)
NotesThe complete published track record as one machine-readable JSON (Content-Disposition: attachment). Includes auto-disabled symbols — publishing what we switched off is the point.

/proof/ledger.csvGET

Accuracy ledger (CSV)

Paramsnone
Response fieldssymbol, n_windows, n_effective_samples, precision_at_n_mean, precision_at_n_weighted, wilson_low, random_baseline, lift_vs_random
NotesThe same per-symbol ledger as a spreadsheet-ready CSV.

/proof/anchorsGET

Cryptographic anchor chain

Paramsnone
Response fieldsok, chain_length, chain[] (daily anchors, most-recent first, max 90), hashed_files, how_to_verify, basis
NotesDaily hash anchors over the proof artifacts — verify the ledger's integrity independently.

/proof/feed_trustGET

Feed reconciliation verdicts

Paramsnone
Response fieldsok, generated_at, window (rolling 7d), last_reconcile_run_ts, what_this_is, venues{} per venue {verdict, accuracy_pct, reconcile_accuracy_pct, coverage_pct, n_assessable, n_runs, ...}
NotesWe audit our OWN liquidation tape against independent exchange references and publish the verdicts, with the n shown.

/feeds/trustGET

Trust-scored venue feed

Paramsnone
Response fieldsok, generated_at, window, as_of, venues_measured, venues_tracked, basis, venues[] per venue {verdict, n, Wilson ci95_low, trend, days_measured}
NotesPer-venue reconciliation trust scores with the honest measured-vs-tracked venue count. 5-min server cache.

/receipts.jsonGET

Machine-readable receipts

Paramsnone
Response fieldsok, as_of, as_of_iso, what_this_is, track_record, autopsy_index, feed_trust, methodology_links
NotesThe verifiable-evidence locker in one JSON: measured track record, published cascade autopsies, feed-trust audit.

/healthzGET

Liveness probe

Paramsnone
Response fieldsstatus
NotesPublic liveness probe used by external monitors.

/.well-known/mcp.jsonGET

MCP discovery document

Paramsnone
Response fieldsmcp — streamable-HTTP discovery for the /mcp agent-native server
NotesAI-agent-native access to the same validated data layer. Keyless /mcp calls give protocol discovery plus the get_proof_summary teaser; the data tools require a B2B API key (see /docs).

Examples

Copy-paste; each returns JSON today.

curl -s https://hunterkiller.io/api/public/liq_teaser
curl -s https://hunterkiller.io/api/public/coin_teaser/BTCUSDT
curl -s https://hunterkiller.io/proof/stats

Quickstart

Three recipes, copy-paste runnable as-is against the live free endpoints — no key, no signup. Each is pinned in CI against the real payload shape, so what you copy is what runs.

Python requests

import requests

r = requests.get("https://hunterkiller.io/api/public/liq_teaser", timeout=10)
r.raise_for_status()
d = r.json()
t = d["totals_24h"]
print(f"24h liquidations: ${t['usd']:,.0f} across {t['events']} events "
      f"(tape delayed {d['delayed_minutes']} min)")

JavaScript fetch (browser or Node 18+)

fetch("https://hunterkiller.io/api/public/coin_teaser/BTCUSDT")
  .then((r) => r.json())
  .then((d) => console.log(
    `BTCUSDT 24h: $${Math.round(d.usd_24h).toLocaleString()} across `
    + `${d.events_24h} events (tape delayed ${d.delayed_minutes} min)`));

curl any shell

curl -s https://hunterkiller.io/api/public/liq_teaser

Machine-readable docs

Embed the accuracy badge

The live measured headline precision — with its sample size (n=…) and Wilson 95% lower bound — as a small auto-updating badge for your site. One iframe, no JavaScript SDK, no API key, no cookies. Attribution is built in; keep it intact.

<iframe src="https://hunterkiller.io/embed/accuracy" width="320" height="150" style="border:0;border-radius:10px" title="Measured liquidation-level accuracy, by Hunter Killer" loading="lazy"></iframe>

Embed the funding + gamma teaser

The cross-venue funding snapshot (annualized mean, each figure with its venue count) and the Deribit gamma-flip level for BTC/ETH (each with its distance-from-spot and visible-strike count) — snapshot age on the face, descriptive-not-a-signal framing, and an honest unavailable state whenever a source is stale. One iframe, no API key, no cookies. Attribution is built in; keep it intact.

<iframe src="https://hunterkiller.io/embed/funding-gex" width="340" height="260" style="border:0;border-radius:10px" title="Cross-venue funding and dealer-gamma snapshot, by Hunter Killer" loading="lazy"></iframe>

More

Hunter Killer — liquidation intelligence with a published, measured track record. Data is delayed 15 minutes on the free surface; descriptive history, not a forecast. Terms · Risk disclosure