GET/v1/markets/:id/snapshots

Get Market Snapshots

Paginated time-series orderbook snapshots for a specific market.

Path Parameters

idstringrequired
Market ID (conditionId)

Query Parameters

sidestring
Token side filter
fromstring
Start timestamp
tostring
End timestamp
limitnumberdefault:500
Max rows (default 500, max 5000)
offsetnumberdefault:0
Pagination 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
    }
  ]
}
Get Market Snapshots — API Docs | Resolved Markets