Skip to main content

Get Flexible Loans

Query for your ongoing loans

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

HTTP Request

GET /v5/crypto-loan-flexible/ongoing-coin

Request Parameters

ParameterRequiredTypeComments
loanCurrencyfalsestringLoan coin name

Response Parameters

ParameterTypeComments
listarrayObject
> hourlyInterestRatestringLatest hourly flexible interest rate
> loanCurrencystringLoan coin
> totalDebtstringUnpaid principal and interest
> unpaidAmountstringUnpaid principal
> unpaidIntereststringUnpaid interest

Request Example

GET /v5/crypto-loan-flexible/ongoing-coin?loanCurrency=BTC HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1752570124973
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "ok",
"result": {
"list": [
{
"hourlyInterestRate": "0.0000018847396",
"loanCurrency": "ETH",
"totalDebt": "0.10000019",
"unpaidAmount": "0.1",
"unpaidInterest": "0.00000019"
}
]
},
"retExtInfo": {},
"time": 1760452029499
}