Query All Algo Orders
HTTP Request
GET /fapi/v1/allAlgoOrders (HMAC SHA256)
Weight
5
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 | See auth |
| 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. - Orders are excluded if (terminal && created+3d < now) OR created+90d < now.
Response
Array of conditional-order objects (same shape as New Algo Order).