Skip to main content

Query All Current UM Open Conditional Orders - Deprecated

API Description

Get all open conditional orders on a symbol.

Deprecated: This endpoint has returned HTTP 404 since 2026-04-28 and is no longer available. Use GET /papi/v1/um/algo/openAlgoOrders instead. Field changes: strategyId -> algoId, newClientStrategyId -> clientAlgoId, strategyStatus -> algoStatus, stopPrice -> triggerPrice, activationPrice -> activatePrice (TRAILING_STOP_MARKET orders). algoType is a new fixed-value field (CONDITIONAL), not a rename of strategyType -- the order type now lives in type (request) / orderType (response).

HTTP Request

GET /papi/v1/um/conditional/openOrders

Request Weight

1 for a single symbol; 40 when the symbol parameter is omitted Careful when accessing this with no symbol.

Parameters:

NameTypeMandatoryDescription
symbolSTRINGNO
recvWindowLONGNO
timestampLONGYES
  • If the symbol is not sent, orders for all symbols will be returned in an array.

Response Example

[
{
"newClientStrategyId": "abc",
"strategyId":123445,
"strategyStatus":"NEW",
"strategyType": "TRAILING_STOP_MARKET",
"origQty": "0.40",
"price": "0",
"reduceOnly": false,
"side": "BUY",
"positionSide": "SHORT",
"stopPrice": "9300", // please ignore when order type is TRAILING_STOP_MARKET
"symbol": "BTCUSDT",
"bookTime": 1566818724710, // order time
"updateTime": 1566818724722,
"timeInForce": "GTC",
"activatePrice": "9020", // activation price, only return with TRAILING_STOP_MARKET order
"priceRate": "0.3", // callback rate, only return with TRAILING_STOP_MARKET order
"selfTradePreventionMode": "NONE", //self trading preventation mode
"goodTillDate": 0,
"priceMatch": "NONE"
}
]