Skip to main content

Get Renew Order Info

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

HTTP Request

GET /v5/crypto-loan-fixed/renew-info

Request Parameters

ParameterRequiredTypeComments
orderIdfalsestringLoan order ID
orderCurrencyfalsestringLoan coin name
limitfalsestringLimit for data size per page. [1, 100]. Default: 10
cursorfalsestringCursor. Use the nextPageCursor token from the response to retrieve the next page of the result set

Response Parameters

ParameterTypeComments
listarrayObject
> borrowCurrencystringBorrow currency
> amountstringloan amount
> autoRepayinteger1:Auto Repayment; 2:Transfer to flexible loan; 0: No Automatic Repayment. Compatible with existing orders;
> contractNostringContract number
> dueTimestringDue time
> orderIdintegerOrder Id
> loanIdstringLoan Id
> renewLoanNostringRenew Loan number
> timestringtimestamps
nextPageCursorstringRefer to the cursor request parameter

Request Example

GET /v5/crypto-loan-fixed/renew-info HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1752655239825
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "ok",
"result": {
"list": [
{
"amount": "11",
"autoRepay": 2,
"borrowCurrency": "USDT",
"contractNo": "2092164378648656896",
"dueTime": "1766750400000",
"loanId": "2364",
"orderId": 49,
"renewLoanNo": "2092170365690461952",
"time": "1764142142913"
}
],
"nextPageCursor": ""
},
"retExtInfo": {},
"time": 1764208336537
}