Skip to main content
Version: V3

Get Current Open Orders (USER_DATA)

  • GET /api/v3/openOrders

Weight(IP): 3, Weight(UID): 3

Request parameters

ParameterTypeRequired?Description
symbolStringNoFilter by trading pair. If omitted, returns open orders for all symbols.

Request example

curl "https://api-spot.weex.com/api/v3/openOrders?symbol=BTCUSDT" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \

Response parameters

Each returned object contains the fields below:

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, PARTIALLY_FILLED).
timeInForceStringTime-in-force policy.
typeStringOrder type.
sideStringBUY or SELL.
timeLongCreation time (ms).
updateTimeLongLast update time (ms).
isWorkingBooleanWhether the order is currently working.

Response example

[
{
"symbol": "BTCUSDT",
"orderId": 702345678901234567,
"clientOrderId": "my-spot-order-001",
"price": "68900",
"origQty": "0.01",
"executedQty": "0",
"cummulativeQuoteQty": "0",
"status": "NEW",
"timeInForce": "GTC",
"type": "LIMIT",
"side": "BUY",
"time": 1764506000456,
"updateTime": 1764506000456,
"isWorking": true
}
]