Get VIP Margin Data
This margin data is for Classic account in particular.
info
Do not need authentication
HTTP Request
GET /v5/spot-cross-margin-trade/data
Request Parameters
Parameter | Required | Type | Comments |
---|---|---|---|
vipLevel | false | string | Vip level |
currency | false | string | Coin name |
Response Parameters
Parameter | Type | Comments |
---|---|---|
vipCoinList | array | Object |
> list | array | Object |
>> borrowable | boolean | Whether it is allowed to be borrowed |
>> collateralRatio | string | Collateral ratio |
>> currency | string | Coin name |
>> hourlyBorrowRate | string | Borrow interest rate per hour |
>> liquidationOrder | string | Liquidation order |
>> marginCollateral | boolean | Whether it can be used as a margin collateral currency |
>> maxBorrowingAmount | string | Max borrow amount |
> vipLevel | string | Vip level |
Request Example
- HTTP
- Python
GET /v5/spot-cross-margin-trade/data?vipLevel=No VIP¤cy=BTC HTTP/1.1
Host: api.bybit.com
Response Example
{
"retCode": 0,
"retMsg": "success",
"result": {
"vipCoinList": [
{
"list": [
{
"borrowable": true,
"collateralRatio": "0.95",
"currency": "BTC",
"hourlyBorrowRate": "0.000003964522",
"liquidationOrder": "2",
"marginCollateral": true,
"maxBorrowingAmount": "5"
}
],
"vipLevel": "No VIP"
}
]
},
"retExtInfo": {},
"time": 1692071381663
}