Light Mode
Get Loan Market
GET
/api/v3/project/list:::info[Description]
This API endpoint is used to get the information about the currencies available for lending.
:::
Request
Query Params
currency
string
optional
currency
Examples:
BTCETHKCS
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
code
string
required
data
array [object {11}]
required
currency
string
optional
Currency
purchaseEnable
boolean
optional
Whether purchase is supported.
redeemEnable
boolean
optional
Whether redeem is supported.
increment
string
optional
Increment precision for purchase and redemption
minPurchaseSize
string
optional
Minimum purchase amount
maxPurchaseSize
string
optional
Maximum purchase amount
interestIncrement
string
optional
Increment precision for interest; default is 0.0001
Default:
0.0001
minInterestRate
string
optional
Minimum lending rate
marketInterestRate
string
optional
Latest market lending rate
maxInterestRate
string
optional
Maximum lending rate
autoPurchaseEnable
boolean
optional
Whether to allow automatic purchase: true: on, false: off
Example
{
"code": "200000",
"data": [
{
"currency": "BTC",
"purchaseEnable": true,
"redeemEnable": true,
"increment": "0.00000001",
"minPurchaseSize": "0.001",
"maxPurchaseSize": "40",
"interestIncrement": "0.0001",
"minInterestRate": "0.005",
"marketInterestRate": "0.005",
"maxInterestRate": "0.32",
"autoPurchaseEnable": false
}
]
}
Last modified: a month ago