get
https://api.liquiditytech.com/api/v1/trading/rapidxLoan/loan/statement
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Description
Query borrow and repayment settlement transaction history. Returns data from the last 90 days at most.
Permission: Read-only API key required.
Rate Limit: 20 requests per second.
Request
| Field | Type | Mandatory | Description |
|---|---|---|---|
type | String | N | Transaction type: borrow, repay, interest, or liquidation_fee. If omitted, returns all. |
coin | String | N | Filter by currency. If omitted, returns all. |
startTime | Int64 | N | Start timestamp in milliseconds. Defaults to 7 days ago. |
endTime | Int64 | N | End timestamp in milliseconds. Defaults to current time. |
page | Integer | N | Page number, starting from 1. Defaults to 1. |
pageSize | Integer | N | Page size. Defaults to 1000. Maximum 1000. |
Response
| Field | Type | Description |
|---|---|---|
statementId | String | Transaction flow ID. |
exchange | String | Exchange name, e.g., BINANCE, OKX. |
type | String | Transaction type: loan_borrow, loan_repay, loan_interest, or loan_liquidation_fee. |
coin | String | Currency. |
delta | String | Change in available balance (positive for borrow; negative for repay, interest, or liquidation fee). |
balance | String | Available balance after the transaction. |
timestamp | Int64 | Transaction timestamp in milliseconds. |
Example Response
{
"code": 200000,
"message": "Success",
"data": {
"page": 1,
"pageSize": 1000,
"totalSize": 106,
"list": [
{
"statementId": "185647807523192897",
"exchange": "BINANCE",
"type": "loan_borrow",
"coin": "USDT",
"delta": "100.00",
"balance": "10098.00",
"timestamp": 1779951487250
},
{
"statementId": "185649538747334721",
"exchange": "BINANCE",
"type": "loan_interest",
"coin": "USDT",
"delta": "-0.000228",
"balance": "10097.99",
"timestamp": 1779951900007
},
{
"statementId": "185650128252567617",
"exchange": "BINANCE",
"type": "loan_repay",
"coin": "USDT",
"delta": "-50.00",
"balance": "10047.99",
"timestamp": 1779952040556
}
]
}
}
