查詢可借貸幣種
信息
不需要鑒權
HTTP 請求
GET /v5/crypto-loan-common/loanable-data
請求參數
參數 | 是否必需 | 類型 | 說明 |
---|---|---|---|
vipLevel | false | string | Vip等級 VIP0 , VIP1 , VIP2 , VIP3 , VIP4 , VIP5 , VIP99 (supreme VIP)PRO1 , PRO2 , PRO3 , PRO4 , PRO5 , PRO6 |
currency | false | string | 幣種名稱 |
響應參數
參數 | 類型 | 說明 |
---|---|---|
list | array | Object |
> currency | string | 幣種名稱 |
> fixedBorrowable | boolean | 是否支持定期借款 |
> fixedBorrowingAccuracy | integer | 定期借款的幣種精度 |
> flexibleBorrowable | boolean | 是否支持活期借款 |
> flexibleBorrowingAccuracy | integer | 活期借款的幣種精度 |
> maxBorrowingAmount | string | 最大借款限額 |
> minFixedBorrowingAmount | string | 每筆定期借款訂單的最低金額 |
> minFlexibleBorrowingAmount | string | 每筆活期借款訂單的最低金額 |
> vipLevel | string | VIP 等級 |
> flexibleAnnualizedInterestRate | integer | 活期年化借款利率。如果借貸幣種不支持活期, 則總是空字符串 |
> annualizedInterestRate7D | string | 市場目前可提供的7天最低借款年化利率。如果當前市場無存款單,則是空字符串 |
> annualizedInterestRate14D | string | 市場目前可提供的14天最低借款年化利率。如果當前市場無存款單,則是空字符串 |
> annualizedInterestRate30D | string | 市場目前可提供的30天最低借款年化利率。如果當前市場無存款單,則是空字符串 |
> annualizedInterestRate60D | string | 市場目前可提供的60天最低借款年化利率。如果當前市場無存款單,則是空字符串 |
> annualizedInterestRate90D | string | 市場目前可提供的90天最低借款年化利率。如果當前市場無存款單,則是空字符串 |
> annualizedInterestRate180D | string | 市場目前可提供的180天最低借款年化利率。如果當前市場無存款單,則是空字符串 |
請求示例
- HTTP
- Python
- Node.js
GET /v5/crypto-loan-common/loanable-data?currency=ETH&vipLevel=VIP5 HTTP/1.1
Host: api-testnet.bybit.com
響應示例
{
"retCode": 0,
"retMsg": "ok",
"result": {
"list": [
{
"currency": "ETH",
"fixedBorrowable": true,
"fixedBorrowingAccuracy": 6,
"flexibleBorrowable": true,
"flexibleBorrowingAccuracy": 4,
"maxBorrowingAmount": "1100",
"minFixedBorrowingAmount": "0.1",
"minFlexibleBorrowingAmount": "0.001",
"vipLevel": "VIP5",
"annualizedInterestRate14D": "0.08",
"annualizedInterestRate180D": "",
"annualizedInterestRate30D": "",
"annualizedInterestRate60D": "",
"annualizedInterestRate7D": "",
"annualizedInterestRate90D": "",
"flexibleAnnualizedInterestRate": "0.001429799316"
}
]
},
"retExtInfo": {},
"time": 1752573126653
}