post
https://api.liquiditytech.com/api/v1/trading/rapidxLoan/loan/borrow
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Description
Borrowed assets are credited to the portfolio's account on the exchange.
Permission: Trade API key required.
Rate Limit: 50 requests per 10 seconds.
Request
| Field | Type | Mandatory | Description |
|---|---|---|---|
exchange | String | Y | Borrowed assets are credited to this exchange. |
coin | String | Y | Borrowed currency. |
amount | String | Y | Borrowed amount. Must be greater than 0, with 2 decimal places. |
clientOrderId | String | N | Client idempotency ID. Maximum 64 characters. |
Response
| Field | Type | Description |
|---|---|---|
orderId | String | Loan order ID. |
borrowed | BigDecimal | Actual borrowed amount for this transaction. |
loanBalance | BigDecimal | Loan balance of this currency after borrowing. |
availableBalance | BigDecimal | Available balance of this currency after borrowing. |
timestamp | Int64 | Transaction timestamp in milliseconds. |
Example Request
{
"exchange": "BINANCE",
"coin": "USDT",
"amount": "100000.00",
"clientOrderId": "user-borrow-20260601-001"
}
Example Response
{
"code": 200000,
"message": "Success",
"data": {
"orderId": "185647807523192897",
"borrowed": 100.0,
"loanBalance": 100.0,
"availableBalance": 10098.0,
"timestamp": 1779951487250
}
}
