Skip to main content

Get Tiered Collateral Ratio

UTA loan tiered collateral ratio

info

Do not need authentication

HTTP Request

GET /v5/spot-margin-trade/collateral

Request Parameters

ParameterRequiredTypeComments
currencyfalsestringCoin name, uppercase only

Response Parameters

ParameterTypeComments
listarrayObject
> currencystringCoin name
> collateralRatioListarrayObject
>> maxQtystringUpper limit(in coin) of the tiered range, "" means positive infinity
>> minQtystringlower limit(in coin) of the tiered range
>> collateralRatiostringCollateral ratio

Request Example

GET /v5/spot-margin-trade/collateral?currency=BTC HTTP/1.1
Host: api-testnet.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"list": [
{
"currency": "BTC",
"collateralRatioList": [
{
"minQty": "0",
"maxQty": "1000000",
"collateralRatio": "0.85"
},
{
"minQty": "1000000",
"maxQty": "",
"collateralRatio": "0"
}
]
}
]
},
"retExtInfo": "{}",
"time": 1739848984945
}