What you get
Sub-second L2 data
Polymarket orderbook snapshots, Binance/Bybit L2 depth, Chainlink reference price — all queryable.
Walk-the-book backtest
Submit a typed strategy spec, get back realised PnL, equity curve, profit factor, max drawdown.
Paper trading
Persist a strategy server-side; we run it on every new snapshot and track equity in real time.
Live arb audit
Every signal our engine surfaces, reconciled to resolution. Model EV vs realised PnL, unedited.
Coverage
The API serves data for the same universe the workbench tracks:| Asset | Event types | Sources |
|---|---|---|
| BTC, ETH, SOL | 5m · 15m · 1h · 4h · daily Up/Down | Polymarket CLOB |
| BTC, ETH, SOL | sub-second tick | Binance spot · Bybit linear |
| BTC, ETH, SOL | L2 depth @ 100–200 ms | Binance spot · Bybit linear |
| BTC, ETH, SOL | oracle heartbeat | Chainlink (Polygon) |
Common entry points
Get an API key
Sign in to the dashboard, open
API keys, and mint a
Bearer token. See Authentication.
List recent resolved markets
Hit
GET /v1/markets/resolved
— the same endpoint the dashboard uses to populate its Markets list.Pull orderbook history for one market
Hit
GET /v1/snapshots
or the convenience wrapper at
/v1/markets/{market_id}/orderbook.Run a backtest
POST a strategy spec to
/v1/backtest and poll
/v1/backtest/{job_id} until
status: "done".