GET
/
sapi
/
v1
/
openOrders
curl --request GET \
  --url https://openapi.odyssey.trade/sapi/v1/openOrders
[
  {
    "orderId": "<string>",
    "clientOrderId": "<string>",
    "symbol": "<string>",
    "transactTime": 123,
    "price": "<string>",
    "origQty": "<string>",
    "executedQty": "<string>",
    "avgPrice": "<string>",
    "type": "LIMIT",
    "side": "BUY",
    "status": "NEW"
  }
]

Query Parameters

symbol
string
required

The uppercase symbol name, e.g., BTCUSDT.

limit
integer
required

The maximum number of items that can be returned in the query result. The value must be a positive integer. The default value is 100, maximum value is 1000.

Response

200
application/json
Successful Response
orderId
required
symbol
string
required
price
string
required
origQty
string
required
executedQty
string
required
type
enum<string>
required
Available options:
LIMIT,
MARKET
side
enum<string>
required
Available options:
BUY,
SELL,
buy,
sell
status
enum<string>
required
Available options:
NEW,
New Order,
Partially Filled,
Filled,
Cancelled,
PENDING_CANCEL,
Partially Filled/Cancelled,
REJECTED
clientOrderId
string | null
transactTime
integer | null
avgPrice
string | null