跳至主要内容

機構查詢為客戶創建的投資計劃列表

HTTP 請求

GET/v5/earn/pwm/asset-manager/get-investment-plan

請求參數

參數是否必需類型說明
planIdfalsestring投資計劃ID,不傳返回全部(該接口只能查詢機構 Open API 創建的投資計劃)
statusfalsestring篩選狀態:PendingSubscription(新配置,未申購)/ Active(運行中)/ Closed(已關閉)/ Deleted(已刪除),不傳返回全部
subscriptionUidfalsestring申購投資計劃的用戶UID
limitfalseinteger每頁數量,默認 20,最大 50
cursorfalsestring分頁游標

響應參數

參數類型說明
listarray投資計劃列表
> planIdstring投資計劃ID
> planNamestring投資計劃名稱
> planTypestring計劃類型:stable(穩健)/ advanced(激進)
> subscriptionUidstring申購投資計劃的用戶UID
> statusstring計劃狀態:PendingSubscription(新配置,未申購)/ Active(運行中)/ Closed(已關閉)/ Deleted(已刪除)
> 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下一頁游標,為空表示無更多數據(使用投資計劃ID作為游標)

請求示例

GET /v5/earn/pwm/asset-manager/get-investment-plan 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,
"retMsg": "success",
"result": {
"list": [
{
"planId": "10001",
"planName": "Conservative Growth Plan",
"planType": "stable",
"status": "Active",
"source": "institution",
"subscriptionUid": "12323434",
"currentAssetUsd": "200137.50",
"accumulateYieldUsd": "2137.50",
"investmentDistribution": [
{
"category": "equityFund",
"productId": "431",
"coin": "USDT",
"currentAmount": "50000.00"
}
],
"createdTime": "1700000000000"
}
],
"nextPageCursor": ""
}
}