Skip to main content

Get Loan Data

Get Loan Data

Description​

Query the current loan data for the unified trading account, including total borrowed amount, next interest payment time, and debt details by coin.

HTTP Request​

  • GET /api/v3/trade/loan-data
  • Rate limit: 10/sec/UID
  • Permission: UTA trade (read)
Request
curl "https://api.bitget.com/api/v3/trade/loan-data" \
-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​

N/A

Response
{
"code": "00000",
"msg": "success",
"requestTime": 1751972326323,
"data": {
"currentLoans": "1000.5",
"interestPaymentTime": "1751976000000",
"debtCoinList": [
{
"coin": "USDT",
"debt": "1000.5",
"interestFreeAmount": "200",
"interestRateNextHour": "0.0001"
}
]
}
}

Response Parameters​

ParameterTypeComments
currentLoansStringTotal current borrowed amount (USD)
interestPaymentTimeStringNext interest deduction time
A Unix timestamp in milliseconds
debtCoinListListDebt coin list
> coinStringDebt coin
> debtStringDebt amount
Unit is the debt coin
> interestFreeAmountStringInterest-free quota
Unit is the debt coin
> interestRateNextHourStringNext hour borrow rate (annualized)
In decimal form, e.g., 0.1 means 10%

How was your Reading Experience with us?

★
★
★
★
â˜