Orders - Private
GET /v3/orders/status
/v3/orders/status
Get latest order status
orderId
LONG
YES if no clientOrderId
Order ID
clientOrderId
LONG
YES if no orderId
Client assigned ID to help manage and identify orders with max value 9223372036854775807
orderId
STRING
Order ID
clientOrderId
STRING
Client assigned ID to help manage and identify orders with max value 9223372036854775807
marketCode
STRING
Market code
status
STRING
Available values: CANCELED
, OPEN
, PARTIAL_FILL
, FILLED
side
STRING
Side of the order, BUY
or SELL
price
STRING
Price or limit price in the case of a STOP order
stopPrice
STRING
Trigger price for a STOP order
amount
STRING
Amount (only allow amount field when market is spot and direction is BUY)
displayQuantity
STRING
triggerType
STRING
isTriggered
BOOL
true
for a STOP order
remainQuantity
STRING
Remaining quantity
totalQuantity
STRING
Total quantity
cumulativeMatchedQuantity
STRING
Cumulative quantity of the matches
avgFillPrice
STRING
Average of filled price
fees
LIST of dictionaries
Overall fees with instrument ID, if you don't hold enough OX to cover the fee then USDT will be charged instead
orderType
STRING
Type of the order, availabe values: MARKET
, LIMIT
, STOP_LIMIT
,STOP_MARKET
timeInForce
STRING
Client submitted time in force.
GTC
(Good-till-Cancel) - DefaultIOC
(Immediate or Cancel, i.e. Taker-only)FOK
(Fill or Kill, for full size)MAKER_ONLY
(i.e. Post-only)MAKER_ONLY_REPRICE
(Reprices order to the best maker only price if the specified price were to lead to a taker trade)
source
STRING
Source of the request, available values: 0
, 2
, 10
, 11
, 13
, 22
, 31
, 32
, 33
, 101
, 102
, 103
, 104
, 108
, 111
, 150
.
Enumeration: 0: GUI
, 2: Borrow
, 11: REST
, 13: Websocket
, 22: Delivery
, 31: Physical settlement
, 32: Cash settlement
, 33: transfer
, 101: Automatic borrow
, 102: Borrow position liquidation
, 103: Position liquidation
, 104: Liquidation revert
, 108: ADL
, 111: Automatic repayment
, 150: BLP assignment
createdAt
STRING
Millisecond timestamp of the order created time
lastModifiedAt
STRING
Millisecond timestamp of the order last modified time
lastMatchedAt
STRING
Millisecond timestamp of the order last matched time
canceledAt
STRING
Millisecond timestamp of the order canceled time
GET /v3/orders/working
/v3/orders/working
Returns all the open orders of the account connected to the API key initiating the request.
marketCode
STRING
NO
default most recent orders first
orderId
LONG
NO
Client assigned ID to help manage and identify orders
clientOrderId
LONG
NO
Client assigned ID to help manage and identify orders with max value 9223372036854775807
orderId
STRING
Order ID
clientOrderId
STRING
Client assigned ID to help manage and identify orders with max value 9223372036854775807
marketCode
STRING
Market code
status
STRING
Available values: OPEN
, PARTIALLY_FILLED
side
STRING
Side of the order, BUY
or SELL
price
STRING
Price or limit price in the case of a STOP order
stopPrice
STRING
Trigger price for a STOP order
isTriggered
BOOL
Returns true
if a STOP order has been triggered
quantity
STRING
Quantity
remainQuantity
STRING
Remaining quantity
matchedQuantity
STRING
Matched Quantity
amount
STRING
Amount (only allow amount field when market is spot and direction is BUY)
displayQuantity
STRING
triggerType
STRING
orderType
STRING
Type of the order, availabe values: MARKET
, LIMIT
, STOP_LIMIT
,STOP_MARKET
timeInForce
STRING
Client submitted time in force.
GTC
(Good-till-Cancel) - DefaultIOC
(Immediate or Cancel, i.e. Taker-only)FOK
(Fill or Kill, for full size)MAKER_ONLY
(i.e. Post-only)MAKER_ONLY_REPRICE
(Reprices order to the best maker only price if the specified price were to lead to a taker trade)
source
STRING
Source of the request, available values: 0
, 2
, 10
, 11
, 13
, 22
, 31
, 32
, 33
, 101
, 102
, 103
, 104
, 108
, 111
, 150
.
Enumeration: 0: GUI
, 2: Borrow
, 11: REST
, 13: Websocket
, 22: Delivery
, 31: Physical settlement
, 32: Cash settlement
, 33: transfer
, 101: Automatic borrow
, 102: Borrow position liquidation
, 103: Position liquidation
, 104: Liquidation revert
, 108: ADL
, 111: Automatic repayment
, 150: BLP assignment
createdAt
STRING
Millisecond timestamp of the order created time
lastModifiedAt
STRING
Millisecond timestamp of the order last modified time
lastMatchedAt
STRING
Millisecond timestamp of the order last matched time
POST /v3/orders/place
/v3/orders/place
Place orders.
recvWindow
LONG
NO
In milliseconds. If an order reaches the matching engine and the current timestamp exceeds timestamp + recvWindow, then the order will be rejected. If timestamp is provided without recvWindow, then a default recvWindow of 1000ms is used. If recvWindow is provided with no timestamp, then the request will not be rejected. If neither timestamp nor recvWindow are provided, then the request will not be rejected
timestamp
STRING
YES
In milliseconds. If an order reaches the matching engine and the current timestamp exceeds timestamp + recvWindow, then the order will be rejected.
responseType
STRING
YES
FULL
or ACK
orders
LIST
YES
clientOrderId
ULONG
YES
Client assigned ID to help manage and identify orders with max value 9223372036854775807
marketCode
STRING
YES
Market code
side
STRING
YES
BUY
or SELL
quantity
STRING
YES
Quantity
amount
STRING
NO
Amount (only allow amount field when market is spot and direction is BUY)
displayQuantity
STRING
NO
displayQuantity (For an iceberg order, pass both quantity
and displayQuantity
fields in the order request.)
timeInForce
STRING
NO
Default GTC
orderType
STRING
YES
LIMIT
or MARKET
or STOP_LIMIT
or STOP_MARKET
price
STRING
NO
Limit price for the limit order
stopPrice
STRING
NO
Stop price for the stop order
limitPrice
STRING
NO
Limit price for the stop limit order
selfTradePreventionMode
STRING
No
NONE
, EXPIRE_MAKER
, EXPIRE_TAKER
, EXPIRE_BOTH
notice
STRING
OrderClosed
or OrderMatched
or OrderOpened
accountId
STRING
Account ID
code
STRING
Error code
message
STRING
Error message
submitted
BOOL
Denotes whether the order was submitted to the matching engine or not
orderId
STRING
clientOrderId
STRING
Client assigned ID to help manage and identify orders with max value 9223372036854775807
marketCode
STRING
status
STRING
Order status
side
STRING
SELL
or BUY
price
STRING
stopPrice
STRING
isTriggered
BOOL
false (can be true for STOP order types)
quantity
STRING
amount
STRING
displayQuantity
STRING
remainQuantity
STRING
Remaining quantity
matchId
STRING
matchPrice
STRING
matchQuantity
STRING
Matched quantity
feeInstrumentId
STRING
Instrument ID of fees paid from this match ID
fees
STRING
Amount of fees paid from this match ID
orderType
STRING
MARKET
or LIMIT
or STOP_LIMIT
or or STOP_MARKET
triggerType
STRING
timeInForce
STRING
source
STRING
Source of the request, available values: 0
, 2
, 10
, 11
, 13
, 22
, 101
, 102
, 103
, 104
, 111
.
Enumeration: 0: GUI
, 2: Borrow
, 11: REST
, 13: Websocket
, 22: Delivery
, 101: Automatic borrow
, 102: Borrow position liquidation
, 103: Contract liquidation
, 104: Liquidation revert
, 111: Automatic repayment
createdAt
STRING
Millisecond timestamp of the order created time
lastModifiedAt
STRING
Millisecond timestamp of the order last modified time
lastMatchedAt
STRING
Millisecond timestamp of the order last matched time
DELETE /v3/orders/cancel
/v3/orders/cancel
Cancel orders.
recvWindow
LONG
NO
timestamp
LONG
YES
responseType
STRING
YES
FULL
or ACK
orders
LIST
YES
marketCode
STRING
YES
orderId
STRING
Either one of orderId or clientOrderId is required
clientOrderId
ULONG
Either one of orderId or clientOrderId is required
Client assigned ID to help manage and identify orders with max value 9223372036854775807
submitted
BOOL
Denotes if the cancel request was submitted to the matching engine or not
notice
STRING
OrderClosed
accountId
STRING
Account ID
code
STRING
Error code
message
STRING
Error message
orderId
STRING
clientOrderId
STRING
Client assigned ID to help manage and identify orders with max value 9223372036854775807
marketCode
STRING
side
STRING
SELL
or BUY
price
STRING
stopPrice
STRING
isTriggered
BOOL
false (can be true for STOP order types)
quantity
STRING
amount
STRING
displayQuantity
STRING
remainQuantity
STRING
Remaining quantity
orderType
STRING
MARKET
or LIMIT
or STOP
or STOP_MARKET
triggerType
STRING
timeInForce
STRING
closedAt
STRING
Millisecond timestamp of the order close time
DELETE /v3/orders/cancel-all
/v3/orders/cancel-all
Cancel orders
marketCode
STRING
NO
notice
STRING
Orders queued for cancelation
or No working orders foundβ
Last updated