v3

OpenAPI 3.0.02026-07-31103181312.8 KB
historical

Get Historical Cutoff Timestamps

Returns the cutoff timestamps that define the boundary between live and historical data.

Cutoff fields

  • market_settled_ts : Markets that settled before this timestamp, and their candlesticks, must be accessed via GET /historical/markets and GET /historical/markets/{ticker}/candlesticks.
  • trades_created_ts : Trades that were filled before this timestamp must be accessed via GET /historical/fills.
  • orders_updated_ts : Orders that were canceled or fully executed before this timestamp must be accessed via GET /historical/orders. Resting (active) orders are always available in GET /portfolio/orders.
  • market_positions_last_updated_ts : Settled positions archived from the live data set before this timestamp must be accessed via GET /historical/positions. Unsettled positions are always available in GET /portfolio/positions.
get/historical/cutoff

Response

Historical cutoff timestamps retrieved successfully

market_settled_tsstring date-time required

Cutoff based on market settlement time. Markets and their candlesticks that settled before this timestamp must be accessed via GET /historical/markets and GET /historical/markets/{ticker}/candlesticks.

trades_created_tsstring date-time required

Cutoff based on trade fill time. Fills that occurred before this timestamp must be accessed via GET /historical/fills.

orders_updated_tsstring date-time required

Cutoff based on order cancellation or execution time. Orders canceled or fully executed before this timestamp must be accessed via GET /historical/orders. Resting (active) orders are always available in GET /portfolio/orders.

market_positions_last_updated_tsstring date-time

Cutoff based on position last-update time. Settled positions archived from the live data set before this timestamp are served through the historical section of position reads.