跳至主要内容

查詢所有投資計劃

HTTP 請求

GET/v5/earn/pwm/investment-plan/all

請求參數

參數是否必需類型說明
planIdfalsestring投資計劃ID,不傳返回全部
statusfalsestring篩選狀態:PendingSubscription / Active / Closed,不傳返回全部
limitfalseint分頁大小,默認 20,最大 50
cursorfalsestring分頁游標

響應參數

參數類型說明
listarray投資計劃列表
> planIdstring投資計劃唯一標識
> planNamestring投資計劃名稱
> planTypestring計劃類型:stable / advanced
> statusstring計劃狀態:PendingSubscription(新配置,未申購)/ Active(運行中)/ Closed(已關閉)
> sourcestring創建來源:consultant(顧問創建)/ direct(直客自建)/ institution(機構創建)
> currentAssetUsdstring當前計劃總資產(USD估值),PendingSubscription 狀態時為配置金額
> accumulateYieldUsdstring累計收益(USD估值),PendingSubscription 狀態時為 "0"
> investmentDistributionarray投資分佈比例列表
>> categorystring產品類別:multiCoinEarning / fixedYield / equityFund / onchainEarn
>> coinstring本位幣種
>> productIdstring申購的對應產品ID,基金對應為 fundId
>> currentAmountstring投資資產數量,PendingSubscription 狀態時為後台配置幣種數量,否則為持倉幣種數量
> createdTimestring創建時間戳(毫秒)
nextPageCursorstring下一頁游標,為空表示無更多數據

請求示例

GET /v5/earn/pwm/investment-plan/all HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1741651200000
X-BAPI-RECV-WINDOW: 5000

響應示例

{
"retCode": 0,
"result": {
"list": [
{
"planId": "10001",
"planName": "Conservative Growth Plan",
"planType": "stable",
"status": "Active",
"source": "consultant",
"currentAssetUsd": "200137.50",
"accumulateYieldUsd": "2137.50",
"investmentDistribution": [
{
"category": "fundPool",
"productId": "430",
"coin": "USDT",
"currentAmount": "50000.00"
}
],
"createdTime": "1700000000000"
}
],
"nextPageCursor": ""
}
}