Skip to main content

Get Cryptp Loan Position

Permission: "Spot trade"
UID rate limit: 5 req / second

HTTP Request

GET /v5/crypto-loan-common/position

Request Parameters

None

Response Parameters

ParameterTypeComments
borrowListarrayObject
> fixedTotalDebtstringTotal debt of fixed loan (coin)
> fixedTotalDebtUSDstringTotal debt of fixed loan (USD)
> flexibleHourlyInterestRatestringFlebible loan hourly interest rate
> flexibleTotalDebtstringTotal debt of flexible loan (coin)
> flexibleTotalDebtUSDstringTotal debt of flexible loan (USD)
> loanCurrencystringLoan coin
collateralListarrayObject
> amountstringCollateral amount in coin
> amountUSDstringCollateral amount in USD (after tierd collateral ratio calculation)
> currencystringCollateral coin
ltvstringLTV
supplyListarrayObject
> amountstringSupply amount in coin
> amountUSDstringSupply amount in USD
> currencystringSupply coin
totalCollateralstringTotal collateral amount (USD)
totalDebtstringTotal debt (fixed + flexible, in USD)
totalSupplystringTotal supply amount (USD)

Request Example

GET /v5/crypto-loan-common/position HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1752628288472
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "ok",
"result": {
"borrowList": [
{
"fixedTotalDebt": "0",
"fixedTotalDebtUSD": "0",
"flexibleHourlyInterestRate": "0.0000001361462",
"flexibleTotalDebt": "0.08800022",
"flexibleTotalDebtUSD": "9355.37",
"loanCurrency": "BTC"
},
{
"fixedTotalDebt": "0.1",
"fixedTotalDebtUSD": "282.8",
"flexibleHourlyInterestRate": "0.00000188498892",
"flexibleTotalDebt": "0",
"flexibleTotalDebtUSD": "0",
"loanCurrency": "ETH"
}
],
"collateralList": [
{
"amount": "0.12",
"amountUSD": "9930.11",
"currency": "BTC"
},
{
"amount": "2",
"amountUSD": "4524.81",
"currency": "ETH"
},
{
"amount": "4002.12",
"amountUSD": "3201.69",
"currency": "USDT"
},
{
"amount": "1000",
"amountUSD": "724.8",
"currency": "USDC"
}
],
"ltv": "0.524344",
"supplyList": [
{
"amount": "800.13041095890410959",
"amountUSD": "800.13",
"currency": "USDT"
}
],
"totalCollateral": "18381.41",
"totalDebt": "9638.17",
"totalSupply": "800.13"
},
"retExtInfo": {},
"time": 1752627962000
}