Stream Real‑Time Trades

Ultra‑low‑latency trades for bots and dashboards.

  • Subscribe by symbols, exchanges, or asset classes

  • Millisecond‑level latency for trading strategies

  • Backfill and latest endpoints for quick starts

See documentation

1```
2GET https://rest.coinapi.io/v1/trades/latest?filter_symbol_id=BINANCE_SPOT_BTC_USDT
3Header: X-CoinAPI-Key: YOUR_API_KEY
4```

Best bid/ask and spreads for market‑making and pricing.

Best bid/ask and spreads for market‑making and pricing.

  • Current, latest, and historical quotes

  • Symbol‑level queries for targeted feeds

  • Complements trades for full L1 context

See documentation

1```
2GET https://rest.coinapi.io/v1/quotes/BINANCE_SPOT_BTC_USDT/latest
3Header: X-CoinAPI-Key: YOUR_API_KEY
4```

Order Book (Depth/L2

Full market depth snapshots & updates for execution logic.

  • Current snapshot endpoint for specific symbols

  • Historical & latest snapshots for research

  • Control returned levels with limit_levels

See documentation

1```
2GET https://rest.coinapi.io/v1/orderbooks3/current?filter_symbol_id=BINANCE_SPOT_BTC_USDT&limit_levels=5
3Header: X-CoinAPI-Key: YOUR_API_KEY
4```