v26

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

Query Current Algo Open Orders (USER_DATA)

  • You need to enable Futures Trading Permission for the api key which requests this endpoint.
  • Base URL: https://api.binance.com

Weight(IP): 1

get/sapi/v1/algo/futures/openOrders

Query parameters

recvWindowinteger
Example:5000

The value cannot be greater than 60000

timestampinteger required

UTC timestamp in ms

signaturestring required

Signature

Response

Open Algo Orders

totalinteger required

Example response

{
  "total": 1,
  "orders": [
    {
      "algoId": 14517,
      "symbol": "ETHUSDT",
      "side": "SELL",
      "positionSide": "SHORT",
      "totalQty": "5.00",
      "executedQty": "0.000",
      "executedAmt": "0.00000000",
      "avgPrice": "0.00",
      "clientAlgoId": "d7096549481642f8a0bb69e9e2e31f2e",
      "bookTime": 1649756817004,
      "algoStatus": "WORKING",
      "algoType": "VP",
      "urgency": "LOW"
    }
  ]
}