Query Historical Algo Orders(USER_DATA)
API Description
Get all historical SPOT TWAP orders
HTTP Request
GET /sapi/v1/algo/spot/historicalOrders
Request Weight(IP)
1
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
symbol | STRING | NO | Trading symbol eg. BTCUSDT |
side | ENUM | NO | BUY or SELL |
startTime | LONG | NO | in milliseconds eg.1641522717552 |
endTime | LONG | NO | in milliseconds eg.1641522526562 |
page | INT | NO | Default is 1 |
pageSize | INT | NO | MIN 1, MAX 100; Default 100 |
recvWindow | LONG | NO | |
timestamp | LONG | YES |
Response Example
{
"total": 1,
"orders": [
{
"algoId": 14518,
"symbol": "BNBUSDT",
"side": "BUY",
"totalQty": "100.00",
"executedQty": "0.00",
"executedAmt": "0.00000000",
"avgPrice": "0.000",
"clientAlgoId": "acacab56b3c44bef9f6a8f8ebd2a8408",
"bookTime": 1649757019503,
"endTime": 1649757088101,
"algoStatus": "CANCELLED",
"algoType": "VP",
"urgency": "LOW"
}
]
}