Skip to main content

Get Collateral Coins

info

Does not need authentication.

HTTP Request

GET /v5/crypto-loan-common/collateral-data

Request Parameters

ParameterRequiredTypeComments
currencyfalsestringCoin name, uppercase only

Response Parameters

ParameterTypeComments
collateralRatioConfigListarrayObject
> collateralRatioListarrayObject
>> collateralRatiostringCollateral ratio
>> maxValuestringMax qty
>> minValuestringMin qty
> currenciesstringCurrenies with the same collateral ratio, e.g., BTC,ETH,XRP
currencyLiquidationListarrayObject
> currencystringCoin name
> liquidationOrderintegerLiquidation order

Request Example

GET /v5/crypto-loan-common/collateral-data?currency=BTC HTTP/1.1
Host: api-testnet.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "ok",
"result": {
"collateralRatioConfigList": [
{
"collateralRatioList": [
{
"collateralRatio": "0.8",
"maxValue": "10000",
"minValue": "0"
},
{
"collateralRatio": "0.7",
"maxValue": "20000",
"minValue": "10000"
},
{
"collateralRatio": "0.5",
"maxValue": "30000",
"minValue": "20000"
},
{
"collateralRatio": "0.4",
"maxValue": "99999999999",
"minValue": "30000"
}
],
"currencies": "ATOM,AAVE,BTC,BOB"
}
],
"currencyLiquidationList": [
{
"currency": "BTC",
"liquidationOrder": 1
}
]
},
"retExtInfo": {},
"time": 1752627381571
}