GET
/api/snapshotGet Snapshot At Timestamp
Query a historical orderbook snapshot at a specific point in time.
Query Parameters
timestampstringrequiredRequired. YYYY-MM-DD HH:MM:SS.mmm
marketIdstringFilter by conditionId
cryptostringBTC, ETH, SOL, XRP
timeframestring5m, 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": {...}
}