Skip to main content

Query Isolated Margin Fee Data (USER_DATA)

API Description

Get isolated margin fee data collection with any vip level or user's current specific data as https://www.binance.com/en/margin-fee

HTTP Request

GET /sapi/v1/margin/isolatedMarginData

Request Weight

1 when a single is specified;(IP) 10 when the symbol parameter is omitted(IP)

Request Parameters

NameTypeMandatoryDescription
vipLevelINTNOUser's current specific margin data will be returned if vipLevel is omitted
symbolSTRINGNO
recvWindowLONGNONo more than 60000
timestampLONGYES

Response Example

[
{
"vipLevel": 0,
"symbol": "BTCUSDT",
"leverage": "10",
"data": [
{
"coin": "BTC",
"dailyInterest": "0.00026125",
"borrowLimit": "270"
},
{
"coin": "USDT",
"dailyInterest": "0.000475",
"borrowLimit": "2100000"
}
]
}
]