Query All Algo Orders
HTTP Request
GET /fapi/v1/allAlgoOrders (HMAC SHA256)
Request Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | STRING | YES | Trading pair |
| algoId | LONG | NO | Cursor — return orders with algoId >= cursor, ascending. Mutually exclusive with startTime/endTime |
| startTime | LONG | NO | Start of query window (ms) |
| endTime | LONG | NO | End of query window (ms) |
| limit | INT | NO | 1–1000, default 500 |
| recvWindow | LONG | NO | Accepted but ignored — the server enforces a fixed ±60 second timestamp window instead |
| timestamp | LONG | YES | Request timestamp (ms) |
Constraints
- Query window (
endTime - startTime) must not exceed 7 days. - Default range is the last 7 days when neither
algoIdnor times are set.
There is no age-based exclusion — terminal and historical orders remain queryable regardless of how long ago they were created.
Response
Array of conditional-order objects (same shape as New Algo Order).