Skip to main content

Get Borrowable Coins

info

Does not need authentication.

HTTP Request

GET /v5/crypto-loan-common/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
    listarrayObject
    > currencystringCoin name
    > fixedBorrowablebooleanWhether support fixed loan
    > fixedBorrowingAccuracyintegerCoin precision for fixed loan
    > flexibleBorrowablebooleanWhether support flexible loan
    > flexibleBorrowingAccuracyintegerCoin precision for flexible loan
    > maxBorrowingAmountstringMax borrow limit
    > minFixedBorrowingAmountstringMinimum amount for each fixed loan order
    > minFlexibleBorrowingAmountstringMinimum amount for each flexible loan order
    > vipLevelstringVip level
    > flexibleAnnualizedInterestRateintegerThe annualized interest rate for flexible borrowing. If the loan currency does not support flexible borrowing, it will always be """"
    > annualizedInterestRate7DstringThe lowest annualized interest rate for fixed borrowing for 7 days that the market can currently provide. If there is no lending in the current market, then it is empty string
    > annualizedInterestRate14DstringThe lowest annualized interest rate for fixed borrowing for 14 days that the market can currently provide. If there is no lending in the current market, then it is empty string
    > annualizedInterestRate30DstringThe lowest annualized interest rate for fixed borrowing for 30 days that the market can currently provide. If there is no lending in the current market, then it is empty string
    > annualizedInterestRate60DstringThe lowest annualized interest rate for fixed borrowing for 60 days that the market can currently provide. If there is no lending in the current market, then it is empty string
    > annualizedInterestRate90DstringThe lowest annualized interest rate for fixed borrowing for 90 days that the market can currently provide. If there is no lending in the current market, then it is empty string
    > annualizedInterestRate180DstringThe lowest annualized interest rate for fixed borrowing for 180 days that the market can currently provide. If there is no lending in the current market, then it is empty string

    Request Example

    GET /v5/crypto-loan-common/loanable-data?currency=ETH&vipLevel=VIP5 HTTP/1.1
    Host: api-testnet.bybit.com

    Response Example

    {
    "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
    }