v26

latestOpenAPI 3.0.2raw.githubusercontent.com2024-10-0834042975.6 KB
Convert

Query limit open orders (USER_DATA)

Enable users to query for all existing limit orders

Weight(UID): 3000

get/sapi/v1/convert/limit/queryOpenOrders

Query parameters

recvWindowinteger
Example:5000

The value cannot be greater than 60000

timestampinteger required

UTC timestamp in ms

signaturestring required

Signature

Response

All existing limit orders

Example response

{
  "list": [
    {
      "quoteId": "18sdf87kh9df",
      "orderStatus": "SUCCESS",
      "fromAsset": "BNB",
      "fromAmount": "10",
      "toAsset": "USDT",
      "toAmount": "2317.89",
      "ratio": "231.789",
      "inverseRatio": "0.00431427",
      "createTime": 1614089498000,
      "expiredTimestamp": 1614099498000
    }
  ]
}