Skip to main content
Version: V2

Get Order Info

HTTP request Fetch order by order ID or customizable order ID

  • POST /api/v2/trade/orderInfo

Rate limit: 10 requests/second

Request parameters

ParameterParameter typeRequired?Description
orderIdStringNoEither Order ID or clientOrderId is required.
clientOrderIdStringNoEither Client customized ID or orderId is required.

Request example

curl -X POST "https://api-spot.weex.com/api/v2/trade/orderInfo" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:zh-CN" \
-H "Content-Type: application/json" \
-d '{"orderId": "602928955330134458"}'

Response parameters

Field NameTypeField Description
accountIdStringAccount ID
symbolStringTrading pair
orderIdStringOrder ID
clientOrderIdStringClient order ID
priceStringOrder price
quantityStringOrder quantity
orderTypeStringOrder type
sideStringOrder side
statusStringOrder status
latestFillPriceStringLatest execution price
maxFillPriceStringHighest execution price
minFillPriceStringLowest execution price
fillQuantityStringFilled quantity
fillTotalAmountStringTotal filled amount
cTimeStringCreation time
uTimeStringUpdate time

Response example

{
"code": "00000",
"msg": "success",
"requestTime": 1743754256238,
"data": [{
"accountId": "590105411156181178",
"symbol": "WXTUSDT_SPBL",
"orderId": "602928955330134458",
"clientOrderId": "202504041451014391743749461316",
"price": "100.000000",
"quantity": "10",
"orderType": "limit",
"side": "sell",
"status": "open",
"latestFillPrice": "0",
"maxFillPrice": "0",
"minFillPrice": "0",
"fillQuantity": "0",
"fillTotalAmount": "0",
"cTime": "1743749464829",
"uTime": "1743749464834"
}]
}