Skip to main content

Get Borrowing Market

info

Does not need authentication.

If you want to borrow, you can use this endpoint to check whether there are any suitable counterparty supply orders available.

HTTP Request

GET /v5/crypto-loan-fixed/borrow-order-quote

Request Parameters

ParameterRequiredTypeComments
orderCurrencytruestringCoin name
termfalsestringFixed term 7: 7 days; 14: 14 days; 30: 30 days; 90: 90 days; 180: 180 days
orderBytruestringOrder by, apy: annual rate; term; quantity
sortfalseinteger0: ascend, default; 1: descend
limitfalseintegerLimit for data size per page. [1, 100]. Default: 10

Response Parameters

ParameterTypeComments
listarrayObject
> orderCurrencystringCoin name
> termintegerFixed term 7: 7 days; 14: 14 days; 30: 30 days; 90: 90 days; 180: 180 days
> annualRatestringAnnual rate
> qtystringQuantity

Request Example

GET /v5/crypto-loan-common/loanable-data?currency=ETH&vipLevel=VIP5 HTTP/1.1
Host: api-testnet.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "ok",
"result": {
"list": [
{
"annualRate": "0.04",
"orderCurrency": "USDT",
"qty": "988.78",
"term": 14
}
]
},
"retExtInfo": {},
"time": 1752719158890
}