v26

latestOpenAPI 3.0.2raw.githubusercontent.com2024-10-0834042975.6 KB
Spot Algo

Query Current Algo Open Orders

Get all open SPOT TWAP orders

Weight(IP): 1

get/sapi/v1/algo/spot/openOrders

Query parameters

recvWindowinteger
Example:5000

The value cannot be greater than 60000

timestampinteger required

UTC timestamp in ms

signaturestring required

Signature

Response

twap open orders

totalinteger required

Example response

{
  "total": 1,
  "orders": [
    {
      "algoId": 14517,
      "symbol": "ETHUSDT",
      "side": "SELL",
      "totalQty": "5.000",
      "executedQty": "0.000",
      "executedAmt": "0.000",
      "avgPrice": "0.00",
      "clientAlgoId": "d7096549481642f8a0bb69e9e2e31f2e",
      "bookTime": 1649756817004,
      "endTime": 1649756817004,
      "algoStatus": "WORKING",
      "algoType": "TWAP",
      "urgency": "LOW"
    }
  ]
}