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
cryptostringCryptocurrency filter
timeframestringTimeframe filter
includebookbooleandefault:falseInclude full bid/ask arrays. Off by default for size.
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": {...}
}
