GET
/v1/exchange/snapshotsExchange Historical Snapshots
Historical orderbook snapshots from exchanges. Sampled at 1/sec. Returns lightweight data (no full bid/ask arrays).
Query Parameters
exchangestringrequiredExchange identifier
symbolstringrequiredTrading pair symbol
fromstringStart timestamp (defaults to last 24h)
tostringEnd timestamp
limitnumberdefault:500Max 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
}
]
}