Get Open Orders
Get open orders for the authenticated account.
get/v1/account/open-orders
Query parameters
instrument_idinteger
Instrument ID
Example:1
Response
Orders response.
Example response
[
{
"order_id": 1234567890,
"instrument_id": 1,
"buy": true,
"price": "100.00",
"quantity": "10.00",
"resting_quantity": "9.00",
"filled_quantity": "1.00",
"status": "open",
"created_timestamp": 1767225600000,
"updated_timestamp": 1767225600000,
"client_order_id": "550e8400e29b41d4a716446655440000",
"tpsl": {
"trp": "110.00",
"parent_oid": 1234567890,
"armed_qty": "10.00",
"slip_bps": 1000
}
}
]