get
https://api.liquiditytech.com/api/v1/trading/rapidxLoan/loan/config
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Description
Returns the user's available borrowable currencies, interest rates, and other configuration parameters for borrowing.
Permission: Read-only API key required.
Rate Limit: 20 requests per second.
Request
This endpoint does not require any request parameters.
Response
| Field | Type | Description |
|---|---|---|
coin | string | Borrowable currencies. |
loanLeverage | integer | Borrowing leverage multiplier. |
maxLoanValue | decimal | User-level maximum borrowable amount in USDT, shared across all portfolios. |
loanMmr | decimal | Maintenance margin rate for the borrowed asset. |
loanInterestRate | decimal | Annual interest rate. |
Example Response
{
"code": 200000,
"message": "Success",
"data": [
{
"coin": "BTC",
"loanLeverage": "3",
"maxLoanValue": "6000",
"loanMmr": "0.05",
"loanInterestRate": "0.0015"
},
{
"coin": "USDT",
"loanLeverage": "3",
"maxLoanValue": "800",
"loanMmr": "0.05",
"loanInterestRate": "0.0015"
}
]
}
