cURL
curl --request GET \ --url https://api.arbiterapi.com/v1/markets/{market_id}/orderbook/history \ --header 'X-API-Key: <api-key>'
{ "market_id": "<string>", "snapshots": [ { "market_id": "<string>", "bids": [ { "price": 123, "size": 123, "platform": "polymarket" } ], "asks": [ { "price": 123, "size": 123, "platform": "polymarket" } ], "spread": 123, "mid_price": 123, "timestamp_ms": 123, "bid_depth": 123, "ask_depth": 123 } ], "cursor": "<string>", "has_more": false }
Historical orderbook snapshots. Supports time range filtering and cursor-based pagination.
Start time (Unix seconds)
End time (Unix seconds)
1 <= x <= 500
Pagination cursor (timestamp_ms)
Successful Response
Show child attributes