跳到主要内容

逐仓利率与最大可借数量配置

限速规则 10次/1s (UID)

描述

该接口需要根据请求的UID判断用户VIP等级,再根据VIP等级返回利率、限额等信息

HTTP请求

  • GET /api/v2/margin/isolated/interest-rate-and-limit
请求示例
curl "https://api.bitget.com/api/v2/margin/isolated/interest-rate-and-limit?symbol=BTCUSDT"  -H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"

请求参数

参数名参数类型是否必须描述
symbolString交易对,如BTCUSDT
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1694579779768,
"data": [
{
"symbol": "BTCUSDT",
"leverage": "5",
"baseCoin": "BTC",
"baseTransferable": true,
"baseBorrowable": true,
"baseDailyInterestRate": "0.00007113",
"baseAnnuallyInterestRate": "0.02596245",
"baseMaxBorrowableAmount": "0",
"baseVipList": [
{
"level": "0",
"dailyInterestRate": "0.00007333",
"limit": "0",
"annuallyInterestRate": "0.02676545",
"discountRate": "1"
}
],
"quoteCoin": "USDT",
"quoteTransferable": true,
"quoteBorrowable": true,
"quoteDailyInterestRate": "0.00011963",
"quoteAnnuallyInterestRate": "0.04366495",
"quoteMaxBorrowableAmount": "0",
"quoteList": [
{
"level": "0",
"dailyInterestRate": "0.00012333",
"limit": "0",
"annuallyInterestRate": "0.04501545",
"discountRate": "1"
}
]
}
]
}

返回参数

返回字段参数类型字段说明
symbolString交易对
baseCoinString基础币币种
leverageString杠杆倍数 default 10
baseTransferableBoolean基础币是否可转入
true 可转入
false 不可转入
baseBorrowableBoolean基础币是否可借
true 可借
false 不可借
baseDailyInterestRateString基础币非VIP的日利率
baseAnnuallyInterestRateString基础币非VIP的年利率
baseMaxBorrowableAmountString基础币最大可借
baseVipListArray基础币vip
> levelStringVIP 等级
> limitStringVIP 限额
> dailyInterestRateStringVIP 日利率
> annuallyInterestRateStringVIP 年利率
> discountRateStringVIP 折扣,1代表100%,即无折扣;0.97代表折后利率为原利率的97%
quoteCoinString计价币币种
quoteTransferInAbleBoolean计价币是否可转入
quoteTransferableBoolean计价币是否可借
quoteBorrowableString计价币非VIP日利率
quoteAnnuallyInterestRateString计价币非VIP年利率
quoteMaxBorrowableAmountString计价币非VIP最大可借
quoteListArray计价币vip
> levelStringVIP 等级
> limitStringVIP 限额
> dailyInterestRateStringVIP 日利率
> annuallyInterestRateStringVIP 年利率
> discountRateStringVIP 折扣,1代表100%,即无折扣;0.97代表折后利率为原利率的97%