Skip to main content

Get Subscribable Product Info

info

Does not need authentication.

HTTP Request

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

Request Parameters

None

Response Parameters

ParameterTypeComments
productsarrayProduct card list grouped by category
> typestringProduct category: equityFund / multiCoinEarning / onchainEarn / fixedYield
> cardsarrayProduct card list for this category
>> categorystringProduct type
>> productIdstringUnderlying product ID (available for flexible savings / fixed yield / on-chain earn products)
>> fundNamestringFund name in English (fund products)
>> coinstringProduct coin
>> aprstringCurrent annualized return rate (flexible savings / fixed yield products)
>> aprRangeLowstringAPR lower bound (fund products)
>> aprRangeHighstringAPR upper bound (fund products)
>> tagsarray[string]Product tags
>> introductionstringProduct introduction in English (fund products)
>> aumstringAssets under management (base coin)
>> minInvestmentAmountstringMinimum subscription amount
>> maxInvestmentAmountstringMaximum subscription amount
>> durationintLock-up period in days. 0 means flexible (fixed yield products)
>> maxDrawdownstringHistorical maximum drawdown (fund products)
>> sharpRatiostringSharpe ratio (fund products)
>> estAPRstringEstimated APR for the product

Request Example

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

Response Example

{
"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"
}
]
}
]
}
}