GET
/v1/markets/:id/snapshotsGet Market Snapshots
Paginated time-series orderbook snapshots for a specific market.
Path Parameters
idstringrequiredMarket ID (conditionId)
Query Parameters
sidestringToken side filter
fromstringStart timestamp
tostringEnd timestamp
limitnumberdefault:500Max rows (default 500, max 5000)
offsetnumberdefault:0Pagination offset
Response
200401403404500
Successful Response
Code Snippet
curl -X GET "https://api.resolvedmarkets.com/v1/markets/:id/snapshots" \ -H "X-API-Key: YOUR_API_KEY"
200
{
"market_id": "0x...",
"total": 5400,
"limit": 100,
"offset": 0,
"data": [
{
"timestamp": "2026-03-02 15:30:00.123",
"token_side": "UP",
"best_bid": 0.52,
"best_ask": 0.53
}
]
}