dome_orderbook_history
Fetches historical orderbook snapshots for a specific asset (token ID) over a specified time range. If no start_time and end_time are provided, returns the latest orderbook snapshot for the market. Returns snapshots of the order book including bids, asks, and market metadata in order. All timestamps are in milliseconds. Orderbook data has history starting from October 14th, 2025. Note: When fetching the latest orderbook (without start/end times), the limit and pagination_key parameters are ignored.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of snapshots to return (default: 100, max: 200). Ignored when fetching the latest orderbook without start_time and end_time. | |
| end_time | No | End time in Unix timestamp (milliseconds). Optional - if not provided along with start_time, returns the latest orderbook snapshot. | |
| token_id | Yes | The token id (asset) for the Polymarket market | |
| start_time | No | Start time in Unix timestamp (milliseconds). Optional - if not provided along with end_time, returns the latest orderbook snapshot. | |
| pagination_key | No | Pagination key to get the next chunk of data. Ignored when fetching the latest orderbook without start_time and end_time. |