Skip to main content

Get Borrow Rate

HTTP Request

GET /unified/v3/private/account/borrow-rate

Request Parameters

ParameterRequiredTypeComments
currencyfalsestringUSDC, USDT Only

Response Parameters

ParameterTypeComments
listarrayObject
> currencystringCurrency of all current collateral
> hourlyBorrowRatestringHourly borrow rate
> maxBorrowAmountstringMax borrow amount
> freeBorrowAmountstringThe free interest of loan amount

Request Example

GET /unified/v3/private/account/borrow-rate HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: XXXXX
X-BAPI-TIMESTAMP: 1673078229194
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "Success",
"result": {
"list": [
{
"freeBorrowingAmount": "30000",
"currency": "USDT",
"maxBorrowingAmount": "2500000",
"hourlyBorrowRate": "0.0000055139"
},
{
"freeBorrowingAmount": "15000",
"currency": "USDC",
"maxBorrowingAmount": "1500000",
"hourlyBorrowRate": "0.00000342460000000000"
}
]
},
"retExtInfo": {},
"time": 1672023307465
}