查詢借貸市場借出幣種信息
{
"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
}
]
}
該接口提供借貸市場支持的借出幣種信息查詢
HTTP請求
GET /api/v3/project/list
請求示例
GET /api/v3/project/list?currency=BTC
API權限
此接口需要通用權限
請求URL
此接口支持現貨URL
頻率限制
現貨类权重
:10
請求參數
字段 | 類型 | 是否必須 | 含義 |
---|---|---|---|
currency | String | 否 | 幣種 |
返回值
字段 | 含義 |
---|---|
currency | 幣種 |
purchaseEnable | 支持申購 |
redeemEnable | 支持贖回 |
increment | 申購、贖回步長精度 |
minPurchaseSize | 最小申購數量 |
minInterestRate | 最小出借年利率 |
maxInterestRate | 最大出借年利率 |
interestIncrement | 利息步長精度,默認0.0001 |
maxPurchaseSize | 用戶最大申購限額 |
marketInterestRate | 最新市場年利率 |
autoPurchaseEnable | 是否開啟自動申購:true:開啟,false:關閉 |