Current All Open Orders
Type: USER-DATA
External endpoint:
GET /fapi/v1/openOrders
Rocky impl:GET /fapi/v1/openOrders✓
All open orders for the calling key. Optionally filter by symbol.
Request
GET /fapi/v1/openOrders
Query params
| Name | Type | Required | Notes |
|---|---|---|---|
symbol | string | no | Filter to one standard pair. Omit for all symbols. |
Response — 200
[
{
"orderId": "8a3f5b2c-4d1e-6f7a-8b9c-0d1e2f3a4b5c",
"clientOrderId": "8a3f5b2c-4d1e-6f7a-8b9c-0d1e2f3a4b5c",
"symbol": "BTCUSDT",
"status": "NEW",
"side": "BUY",
"type": "LIMIT",
"price": "76500.00",
"origQty": "0.001",
"updateTime": 1748275200500
}
]
Returns the most recent 500 orders ordered by created_at desc.
Errors
| HTTP | code | msg |
|---|---|---|
400 | -1100 | Unknown symbol. |