Skip to main content

Get Borrowable Coins

info

Do not need authentication

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
    >> borrowingAccuracyintegerValid borrowable coin precision
    >> currencystringCoin name
    >> flexibleHourlyInterestRatestringFlexible hourly floating interest rate
  • Flexible Crypto Loans offer an hourly floating interest rate, calculated based on the actual borrowing time per hour, with the option for early repayment
  • Keeps "" if the coin does not support flexible loan
  • >> hourlyInterestRate7DstringHourly interest rate for 7 days loan
  • 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.
  • Keeps "" if the coin does not support 7 days loan
  • >> hourlyInterestRate14DstringHourly interest rate for 14 days loan
  • 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.
  • Keeps "" if the coin does not support 14 days loan
  • >> hourlyInterestRate30DstringHourly interest rate for 30 days loan
  • 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.
  • Keeps "" if the coin does not support 30 days loan
  • >> hourlyInterestRate90DstringHourly interest rate for 90 days loan
  • 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.
  • Keeps "" if the coin does not support 90 days loan
  • >> hourlyInterestRate180DstringHourly interest rate for 180 days loan
  • 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.
  • Keeps "" 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
    }