v26

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

Query Isolated Margin Account Info (USER_DATA)

  • If "symbols" is not sent, all isolated assets will be returned.
  • If "symbols" is sent, only the isolated assets of the sent symbols will be returned.

Weight(IP): 10

get/sapi/v1/margin/isolated/account

Query parameters

symbolsstring
Example:BTCUSDT,BNBUSDT,ADAUSDT

Max 5 symbols can be sent; separated by ','

recvWindowinteger
Example:5000

The value cannot be greater than 60000

timestampinteger required

UTC timestamp in ms

signaturestring required

Signature

Response

Isolated Margin Account Info when "symbols" is not sent

totalAssetOfBtcstring required
totalLiabilityOfBtcstring required
totalNetAssetOfBtcstring required

Example response

{
  "assets": [
    {
      "baseAsset": {
        "asset": "BTC",
        "borrowed": "0.00000000",
        "free": "0.00000000",
        "interest": "0.00000000",
        "locked": "0.00000000",
        "netAsset": "0.00000000",
        "netAssetOfBtc": "0.00000000",
        "totalAsset": "0.00000000"
      },
      "quoteAsset": {
        "asset": "USDT",
        "borrowed": "0.00000000",
        "free": "0.00000000",
        "interest": "0.00000000",
        "locked": "0.00000000",
        "netAsset": "0.00000000",
        "netAssetOfBtc": "0.00000000",
        "totalAsset": "0.00000000"
      },
      "symbol": "BTCUSDT",
      "marginLevel": "0.00000000",
      "marginLevelStatus": "EXCESSIVE",
      "marginRatio": "0.00000000",
      "indexPrice": "10000.00000000",
      "liquidatePrice": "1000.00000000",
      "liquidateRate": "1.00000000"
    }
  ],
  "totalAssetOfBtc": "0.00000000",
  "totalLiabilityOfBtc": "0.00000000",
  "totalNetAssetOfBtc": "0.00000000"
}