Skip to main content

Get VIP Margin Data

This margin data is for Unified account in particular.

info

Do not need authentication

HTTP Request

GET /v5/spot-margin-trade/data

Request Parameters

ParameterRequiredTypeComments
vipLevelfalsestringVip level
currencyfalsestringCoin name

Response Parameters

ParameterTypeComments
vipCoinListarrayObject
> listarrayObject
>> borrowablebooleanWhether it is allowed to be borrowed
>> collateralRatiostringCollateral ratio
>> currencystringCoin name
>> hourlyBorrowRatestringBorrow interest rate per hour
>> liquidationOrderstringLiquidation order
>> marginCollateralbooleanWhether it can be used as a margin collateral currency
>> maxBorrowingAmountstringMax borrow amount
> vipLevelstringVip level

Request Example

GET /v5/spot-margin-trade/data?vipLevel=No VIP&currency=BTC HTTP/1.1
Host: api-testnet.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"vipCoinList": [
{
"list": [
{
"borrowable": true,
"collateralRatio": "0.95",
"currency": "BTC",
"hourlyBorrowRate": "0.0000015021220000",
"liquidationOrder": "11",
"marginCollateral": true,
"maxBorrowingAmount": "3"
}
],
"vipLevel": "No VIP"
}
]
}
}