Skip to main content

Get Borrowable Coins

info

Does not need authentication.

danger

Borrowed coins can be returned at any time before the due date. You'll be charged 3 times the hourly interest during the overdue period. Your collateral will be liquidated to repay a loan and the interest if you fail to make the repayment 48 hours after the due time.

HTTP Request

GET /v5/crypto-loan/loanable-data

Request Parameters

ParameterRequiredTypeComments
vipLevelfalsestringVIP level
  • VIP0, VIP1, VIP2, VIP3, VIP4, VIP5, VIP99(supreme VIP)
  • PRO1, PRO2, PRO3, PRO4, PRO5, PRO6
currencyfalsestringCoin name, uppercase only

Response Parameters

ParameterTypeComments
vipCoinListarrayObject
> listarrayObject
>> borrowingAccuracyintegerThe number of decimal places (precision) of this coin
>> currencystringCoin name
>> flexibleHourlyInterestRatestringFlexible hourly variable interest rate
  • Flexible Crypto Loans offer an hourly variable interest rate, calculated based on the actual borrowing time per hour, with the option for early repayment
  • Is "" if the coin does not support flexible loan
>> hourlyInterestRate7DstringHourly interest rate for 7 days loan. Is "" if the coin does not support 7 days loan
>> hourlyInterestRate14DstringHourly interest rate for 14 days loan. Is "" if the coin does not support 14 days loan
>> hourlyInterestRate30DstringHourly interest rate for 30 days loan. Is "" if the coin does not support 30 days loan
>> hourlyInterestRate90DstringHourly interest rate for 90 days loan. Is "" if the coin does not support 90 days loan
>> hourlyInterestRate180DstringHourly interest rate for 180 days loan. Is "" if the coin does not support 180 days loan
>> maxBorrowingAmountstringMax. amount to borrow
>> minBorrowingAmountstringMin. amount to borrow
> vipLevelstringVIP level

Request Example

GET /v5/crypto-loan/loanable-data?currency=USDT&vipLevel=VIP0 HTTP/1.1
Host: api.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "request.success",
"result": {
"vipCoinList": [
{
"list": [
{
"borrowingAccuracy": 4,
"currency": "USDT",
"flexibleHourlyInterestRate": "0.0000090346",
"hourlyInterestRate14D": "0.0000207796",
"hourlyInterestRate180D": "",
"hourlyInterestRate30D": "0.00002349",
"hourlyInterestRate7D": "0.0000180692",
"hourlyInterestRate90D": "",
"maxBorrowingAmount": "8000000",
"minBorrowingAmount": "20"
}
],
"vipLevel": "VIP0"
}
]
},
"retExtInfo": {},
"time": 1728619315868
}