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

    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"
    }
    ]
    },
    "retExtInfo": {},
    "time": 1752573126653
    }