查詢可借貸幣種
信息
不需要鑒權
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 等級 |
請求示例
- 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"
}
]
},
"retExtInfo": {},
"time": 1752573126653
}