LT 全量資產基礎信息查詢
信息
這是個公共接口,無需鑒權。
HTTP 請求
GET /spot/v3/public/infos
請求參數
| 參數 | 是否必須 | 類型 | 說明 |
|---|---|---|---|
| ltCode | false | string | 想要查詢的LT資產名稱,從資產列表中獲取. |
返回參數
| 參數 | 類型 | 說明 |
|---|---|---|
| list | array | Object |
| > ltCode | string | LT資產簡稱 |
| > ltName | string | LT資產全稱 |
| > maxPurchase | string | 單次最大申購金額 |
| > minPurchase | string | 單次最小申購金額 |
| > maxPurchaseDaily | string | 單個自然日最大申購金額 |
| > maxRedeem | string | 單次最大贖回數量 |
| > minRedeem | string | 單次最小贖回數量 |
| > maxRedeemDaily | string | 單個自然日最大贖回數量 |
| > purchaseFeeRate | string | 申購費率 |
| > redeemFeeRate | string | 贖回費率 |
| > status | string | 目前LT資產是否可以進行申購和贖回 |
| > fundFee | string | 每天針對持有LT資產的用戶收取的資金費用 |
| > fundFeeTime | number | 收取資金費用的時間 |
| > manageFeeRate | string | 管理費率 |
| > manageFeeTime | number | 收取資金管理費的時間 |
| > value | string | 平臺內部使用字段, 暫無實際意義, 可忽略 |
| > total | string | 平臺申購總量上限 |
| > netValue | string | 當前淨值 |
請求示例
https://api-testnet.bybit.com/spot/v3/public/infos?ltCode=EOS2LUSDT
響應示例
{
"retCode": 0,
"retMsg": "OK",
"result": {
"list": [
{
"fundFee": "21.79800315",
"fundFeeTime": 1673366400000,
"ltCode": "EOS2LUSDT",
"ltName": "Long EOS (2x Leverage)",
"manageFeeRate": "0.00005",
"manageFeeTime": 1673398800000,
"maxPurchase": "5000",
"maxPurchaseDaily": "200000",
"maxRedeem": "861",
"maxRedeemDaily": "20000",
"minPurchase": "100",
"minRedeem": "17",
"netValue": "3.781571076822412032",
"purchaseFeeRate": "0.0005",
"redeemFeeRate": "0.0005",
"status": "1",
"total": "5000000",
"value": "23624.848996419293002588635"
}
]
},
"retExtInfo": {},
"time": 1673345413125
}