Lending Market(V3)
Get Currency Information
{
"success": true,
"code": "200",
"msg": "success",
"retry": false,
"data": [
{
"currency": "BTC",
"purchaseEnable": true,
"redeemEnable": true,
"increment": "1",
"minPurchaseSize": "10",
"minInterestRate": "0.004",
"maxInterestRate": "0.02",
"interestIncrement": "0.0001",
"maxPurchaseSize": "20000",
"marketInterestRate": "0.009",
"autoPurchaseEnable": true
}
]
}
This API endpoint is used to get the information about the currencies available for lending.
HTTP REQUEST
GET /api/v3/project/list
Example
GET /api/v3/project/list?currency=BTC
API KEY PERMISSIONS
This endpoint requires the General permission.
REQUEST URL
This endpoint support Spot URL
REQUEST RATE LIMIT
Spot weight
:10
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
currency | String | No | Currency |
RESPONSES
Param | Description |
---|---|
currency | Currency |
purchaseEnable | Support subscription |
redeemEnable | Support redemption |
increment | Increment precision for subscription and redemption |
minPurchaseSize | Minimum subscription amount |
minInterestRate | Minimum annualized interest rate |
maxInterestRate | Maximum annualized interest rate |
interestIncrement | Increment precision for interest; default is 0.0001 |
maxPurchaseSize | Maximum subscription limit per user |
marketInterestRate | Latest market annualized interest rate |
autoPurchaseEnable | Auto-Subscribe enabled?: true: enable, false: disable |