GET/v1/exchange/snapshots

Exchange Historical Snapshots

Historical orderbook snapshots from exchanges. Sampled at 1/sec. Returns lightweight data (no full bid/ask arrays).

Query Parameters

exchangestringrequired
Exchange identifier
symbolstringrequired
Trading pair symbol
fromstring
Start timestamp (defaults to last 24h)
tostring
End timestamp
limitnumberdefault:500
Max rows (default 500, max 5000)

Response

200401403404500

Successful Response

Code Snippet
curl -X GET "https://api.resolvedmarkets.com/v1/exchange/snapshots" \
  -H "X-API-Key: YOUR_API_KEY"
200
{
  "exchange": "hyperliquid_perp",
  "symbol": "BTC",
  "count": 100,
  "data": [
    {
      "timestamp": "2026-03-27 14:30:00.123",
      "best_bid": 87420.50,
      "best_ask": 87421.00,
      "mid_price": 87420.75,
      "spread": 0.50,
      "bid_depth_total": 4250000,
      "ask_depth_total": 3890000
    }
  ]
}
Exchange Historical Snapshots — API Docs | Resolved Markets