Skip to main content
Version: V3

Get Order Details (USER_DATA)

  • GET /api/v3/order

Weight(IP): 2, Weight(UID): 2

Request parameters

ParameterTypeRequired?Description
orderIdLongConditionalOrder ID. Required when origClientOrderId is not supplied.
origClientOrderIdStringConditionalClient order ID. Required when orderId is not supplied.

Request example

curl "https://api-spot.weex.com/api/v3/order?orderId=702345678901234567" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \

Response parameters

FieldTypeDescription
symbolStringTrading pair.
orderIdLongOrder ID.
clientOrderIdStringClient-defined order ID.
priceStringOrder price.
origQtyStringOriginal order quantity.
executedQtyStringFilled quantity.
cummulativeQuoteQtyStringFilled amount in quote asset.
statusStringOrder status (e.g. NEW, FILLED, CANCELED).
timeInForceStringTime-in-force policy.
typeStringOrder type.
sideStringBUY or SELL.
timeLongCreation time (ms).
updateTimeLongLast update time (ms).
isWorkingBooleanWhether the order is active.

Response example

{
"symbol": "BTCUSDT",
"orderId": 702345678901234567,
"clientOrderId": "my-spot-order-001",
"price": "68900",
"origQty": "0.01",
"executedQty": "0.01",
"cummulativeQuoteQty": "689.00",
"status": "FILLED",
"timeInForce": "GTC",
"type": "LIMIT",
"side": "BUY",
"time": 1764506000456,
"updateTime": 1764506001556,
"isWorking": false
}