Get Open Orders
Returns all currently-open orders belonging to the authenticated portfolio. Orders are returned regardless of instrument or order type; filtering by instrument kind and order type is not currently supported.
Each order includes post_only, reject_post_only, and reduce_only flags. post_only and reject_post_only correspond to the SBE postOnly and postOnlyReject bits and are mutually exclusive. reduce_only reflects per-order reduce-only from JSON-RPC or FIX (it cannot be set per order in SBE).
The portfolio is resolved from the authenticated session — there is no parameter to query another portfolio's orders. MMP-flagged orders are visible via this endpoint. Orders placed via Mass Quote (MassQuoteRequest) are not currently returned.
This endpoint is rate-limited per portfolio. Exceeding the limit returns HTTP 429.
Response
List of open orders for the authenticated portfolio. May be empty.
Example response
{
"result": [
{
"order_id": "1cc1c718-49e0-4ea5-8902-f3f22968c350",
"instrument_name": "TREE-USD",
"price": 0.0717,
"amount": 83698,
"creation_timestamp": 1778270370643,
"last_update_timestamp": 1778270370643
}
]
}