v3

OpenAPI 3.0.02026-07-31103181312.8 KB
historical

Get Historical Orders

Endpoint for getting orders that have been archived to the historical database.

get/historical/orders

Query parameters

tickerstring

Filter by market ticker

max_tsinteger

Filter items before this Unix timestamp

limitinteger

Number of results per page. Defaults to 100.

cursorstring

Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.

Response

Historical orders retrieved successfully

cursorstring required

Example response

{
  "orders": [
    {
      "yes_price_dollars": "0.5600",
      "no_price_dollars": "0.5600",
      "fill_count_fp": "10.00",
      "remaining_count_fp": "10.00",
      "initial_count_fp": "10.00",
      "taker_fill_cost_dollars": "0.5600",
      "maker_fill_cost_dollars": "0.5600",
      "taker_fees_dollars": "0.5600",
      "maker_fees_dollars": "0.5600"
    }
  ]
}