Trading
List open orders
Returns open and partially filled orders for the authenticated account.
get/orders/open
Query parameters
marketstring
Filter by market symbol.
Response
Open orders returned successfully.
Example response
[
{
"order_id": "order-001",
"client_order_id": "my-order-1",
"market": "BTCZAR",
"side": "buy",
"type": "limit",
"price": "1020000",
"quantity": "10000000",
"filled": "0",
"remaining": "10000000",
"status": "open",
"time_in_force": "GTC",
"created_at": 1710000000,
"updated_at": 1710000001,
"cancelled_at": 1710000100
}
]Changes
No recorded changes to this endpoint across all 1 revision of this API.