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â
| Parameter | Type | Comments |
|---|---|---|
| currentLoans | String | Total current borrowed amount (USD) |
| interestPaymentTime | String | Next interest deduction time A Unix timestamp in milliseconds |
| debtCoinList | List | Debt coin list |
| > coin | String | Debt coin |
| > debt | String | Debt amount Unit is the debt coin |
| > interestFreeAmount | String | Interest-free quota Unit is the debt coin |
| > interestRateNextHour | String | Next hour borrow rate (annualized) In decimal form, e.g., 0.1 means 10% |