Skip to main content

Open Orders

List currently working (non-terminal) futures orders.

HTTP

MethodPOST
Endpoint/trade/api/v2/futures/orders/open
Rate limit20 requests per 60 seconds

Request Parameters

ParameterTypeMandatoryDescription
exchangestringYesEXCHANGE_2.
symbolstringNoFilter to a single symbol (e.g. BTCUSDT).
limitintegerNoPage size. Maximum 50.
from_timeintegerNoFilter: orders created at/after this timestamp (Unix ms).
to_timeintegerNoFilter: orders created at/before this timestamp (Unix ms).
Time window

The difference between from_time and to_time cannot exceed 7 days. If you omit both, you get the latest 50 orders from the last 7 days.

To page through more, use the cursor returned in the response as the next call's to_time.

Example

import requests

body = {"exchange": "EXCHANGE_2", "symbol": "btcusdt"}
headers, path = sign_request("POST", "/trade/api/v2/futures/orders/open")
response = requests.post(BASE_URL + path, headers=headers, json=body)
print(response.json())

Response

{
"data": {
"orders": [
{
"order_id": "01936c09-85a6-79d5-a7b8-d0e19daa9fbf",
"exchange": "EXCHANGE_2",
"symbol": "BTCUSDT",
"side": "BUY",
"status": "RAISED",
"order_type": "LIMIT",
"quantity": "160",
"exec_quantity": "0",
"price": "80000",
"avg_execution_price": "0",
"execution_fee": "0.1051",
"realised_pnl": "0",
"reduce_only": false,
"created_at": 1732684383674,
"updated_at": 1732684383674
}
],
"cursor": 1732684383674
}
}

Response Parameters

FieldTypeDescription
data.ordersarrayArray of order objects. Each entry has the same shape as Place Order.
data.cursorintegerPagination marker (Unix ms timestamp of the oldest entry returned). Pass as to_time in the next call to fetch the next page.