Cancel & Query Orders
Cancel, query, and list your orders.
/api/v1/orderWeight: 2USER_DATAQuery one order by orderId or by your clientOrderId.
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | STRING | Yes | The trading pair |
| orderId | LONG | No* | Provide orderId or clientOrderId |
| clientOrderId | STRING | No* | Your id from when the order was placed |
An order's status is one of:
| Status | Meaning |
|---|---|
| NEW | Accepted, not yet filled |
| PARTIALLY_FILLED | Some quantity filled, the rest still resting |
| FILLED | Fully filled |
| CANCELED | Cancelled by you |
| EXPIRED | Expired by its time-in-force (IOC/FOK) |
| REJECTED | Not accepted |
/api/v1/orderWeight: 1TRADECancel a single open order by orderId or clientOrderId.
/api/v1/openOrdersWeight: 1TRADECancel every open order on a symbol in one call.
/api/v1/openOrdersWeight: 3USER_DATAList all currently open orders. Pass a symbol to scope it, or omit for all symbols (higher weight).
/api/v1/allOrdersWeight: 10USER_DATAList orders on a symbol including filled, cancelled and expired ones. Page through history with startTime, endTime and limit.