跳至主要内容

查詢可申購產品卡片(直客模式)

信息

無需身份驗證。

HTTP 請求

GET/v5/earn/pwm/customize-plan/product

請求參數

響應參數

參數類型說明
productsarray按產品類別分組的卡片列表
> typestring產品類別:equityFund / multiCoinEarning / onchainEarn / fixedYield
> cardsarray該類別下的產品卡片列表
>> categorystring產品類型
>> productIdstring對應的底層產品ID(活期 / 固收 / 鏈上賺幣產品有此字段)
>> fundNamestring基金名稱英文(基金產品)
>> coinstring產品幣種
>> aprstring當前年化收益率(活期 / 固收產品)
>> aprRangeLowstring年化收益率下界(基金產品)
>> aprRangeHighstring年化收益率上界(基金產品)
>> tagsarray[string]產品標籤
>> introductionstring產品簡介英文(基金產品)
>> aumstring基金管理規模(本位幣)
>> minInvestmentAmountstring最小申購金額
>> maxInvestmentAmountstring最大申購金額
>> durationint鎖定期天數,0 表示活期(固收產品)
>> maxDrawdownstring歷史最大回撤(基金產品)
>> sharpRatiostring夏普比率(基金產品)
>> estAPRstring產品預估APR

請求示例

GET /v5/earn/pwm/customize-plan/product HTTP/1.1
Host: api.bybit.com

響應示例

{
"retCode": 0,
"result": {
"products": [
{
"type": "equityFund",
"cards": [
{
"category": "equityFund",
"fundName": "Market Neutral Alpha",
"coin": "USDT",
"aprRangeLow": "0.08",
"aprRangeHigh": "0.15",
"tags": ["Delta Neutral"],
"introduction": "A market-neutral strategy fund",
"aum": "5000000",
"minInvestmentAmount": "100000",
"maxInvestmentAmount": "5000000",
"maxDrawdown": "-0.035",
"sharpRatio": "2.3",
"estAPR": "0.06"
}
]
},
{
"type": "multiCoinEarning",
"cards": [
{
"category": "flexibleSavings",
"productId": "430",
"coin": "USDT",
"apr": "0.05",
"duration": 0,
"minInvestmentAmount": "10000",
"maxInvestmentAmount": "10000000",
"estAPR": "0.02"
}
]
}
]
}
}