Skip to main content

Get Loan Orders

Rate limit: 5 req/sec/UID

HTTP Request

  • GET /api/v2/spot/ins-loan/loan-order
Request Example
curl "https://api.bitget.com/api/api/v2/spot/ins-loan/loan-order" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"

Request Parameters

ParameterTypeRequiredDescription
orderIdStringNoLoan order id
If not passed, then return all orders, sort by loanTime in descend
startTimeStringNoThe start timestamp (ms)
endTimeStringNoThe end timestamp (ms)
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1711697588556,
"data": [{
"orderId": "xxxxxxx",
"orderProductId": "xxxxxx",
"uid":"xxxxxx",
"loanTime":"1713645576789",
"loanCoin":"USDT",
"unpaidAmount":"1",
"unpaidInterest":"1",
"loanAmount":"1",
"status":"paid_off",
"repaidAmount":"1",
"repaidInterest":"1.1"
}]
}

Response Parameters

ParameterTypeDescription
loanInfoArrayLoan orders information
> orderIdStringLoan order ID
> orderProductIdStringProduct Id
> uidStringThe designated UID that is used to bind INS loan product, loan and repayment
> loanTimeStringLoan timestamp, in milliseconds
> loanCoinStringLoan coin
> loanAmountStringLoan amount
> unpaidAmountStringUnpaid principal
> unpaidInterestStringUnpaid interest
> repaidAmountStringRepaid principal
> repaidInterestStringRepaid interest
> statusStringStatus
not_paid_off: Not paid off
paid_off: paid off

How was your Reading Experience with us?