Skip to content

Order Management System REST API - Trades Controller

The trades URL has no direct operations associated with it.

Trades endpoints are intended for consumers to retrieve historical trades:

  • For streaming consumers to catch up on missed trades after connection loss.
  • For batch or end-of-day processes to retrieve trades within a specific timeframe.

These endpoints provide the same data as the Event endpoints, but in a more compact form and filtered to just trades.

EndpointFromToDescription
BetweenPositionPositionRetrieves trades between two positions.
FromDateDateDateRetrieves trades between two timestamps.
FromPositionPositionDateRetrieves trades between a position and a timestamp.
ToPositionDatePositionRetrieves trades between a timestamp and a position.