get
https://api.liquiditytech.com/api/v1/trading/rapidxLoan/loan/orders
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Description
Query borrow and repayment orders. 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 |
|---|---|---|---|
orderId | String | N | Exact match by system order ID (returned from borrow/repay). If omitted, returns all. |
clientOrderId | String | N | Exact match by client idempotency ID (same as provided when placing the order). If omitted, returns all. |
coin | String | N | Filter by currency. If omitted, returns all. |
type | String | N | Order type: borrow or repay. 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 |
|---|---|---|
orderId | String | System order ID. |
clientOrderId | String | Client idempotency ID (provided when placing the order). |
exchange | String | Exchange name, e.g., BINANCE, OKX. |
type | String | Order type: borrow or repay. |
coin | String | Currency. |
amount | String | Borrow or repayment amount. |
status | String | filled |
createTime | Int64 | Order creation timestamp in milliseconds. |
Example Response
{
"code": 200000,
"message": "Success",
"data": {
"page": 1,
"pageSize": 1000,
"totalSize": 8,
"list": [
{
"orderId": "185647807523192897",
"clientOrderId": "user-borrow-20260601-001",
"exchange": "BINANCE",
"type": "borrow",
"coin": "USDT",
"amount": "100.00",
"status": "filled",
"createTime": 1779951487250
},
{
"orderId": "185650128252567617",
"clientOrderId": "user-repay-20260601-007",
"exchange": "BINANCE",
"type": "repay",
"coin": "USDT",
"amount": "50.00",
"status": "filled",
"createTime": 1779952040556
}
]
}
}
