GET/api/snapshot

Get Snapshot At Timestamp

Query a historical orderbook snapshot at a specific point in time.

Query Parameters

timestampstringrequired
Required. YYYY-MM-DD HH:MM:SS.mmm
marketIdstring
Filter by conditionId
cryptostring
BTC, ETH, SOL, XRP
timeframestring
5m, 15m, 1h, 1d

Response

200401403404500

Successful Response

Code Snippet
curl -X GET "https://api.resolvedmarkets.com/api/snapshot" \
  -H "X-API-Key: YOUR_API_KEY"
200
{
  "market_id": "0x...",
  "crypto": "BTC",
  "crypto_price": 67420.50,
  "up": {
    "best_bid": 0.52,
    "best_ask": 0.53,
    "bids": [...],
    "asks": [...]
  },
  "down": {...}
}
Get Snapshot At Timestamp — API Docs | Resolved Markets