v2
latestOpenAPI 3.0.32026-07-315724.4 KBTrading
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.
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.
get/api/v2/private/get_open_orders
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
}
]
}