Skip to main content

Get Collateral Coins

info

Does not need authentication.

HTTP Request

GET /v5/crypto-loan/collateral-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
>> collateralAccuracyintegerValid collateral coin precision
>> initialLTVstringThe Initial LTV ratio determines the initial amount of coins that can be borrowed. The initial LTV ratio may vary for different collateral
>> marginCallLTVstringIf the LTV ratio (Loan Amount/Collateral Amount) reaches the threshold, you will be required to add more collateral to your loan
>> liquidationLTVstringIf the LTV ratio (Loan Amount/Collateral Amount) reaches the threshold, Bybit will liquidate your collateral assets to repay your loan and interest in full
>> maxLimitstringCollateral limit
> vipLevelstringVIP level

Request Example

GET /v5/crypto-loan/collateral-data?currency=ETH&vipLevel=PRO1 HTTP/1.1
Host: api.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "request.success",
"result": {
"vipCoinList": [
{
"list": [
{
"collateralAccuracy": 8,
"currency": "ETH",
"initialLTV": "0.8",
"liquidationLTV": "0.95",
"marginCallLTV": "0.87",
"maxLimit": "32000"
}
],
"vipLevel": "PRO1"
}
]
},
"retExtInfo": {},
"time": 1728618590498
}