跳至主要内容

查詢機構管轄的基金列表

信息

返回數據按基金 ID 降序排列(最新的在前)。

HTTP 請求

GET/v5/earn/pwm/asset-manager/all-funds

請求參數

參數是否必需類型說明
coinfalsestring幣種篩選
fundIdfalsestring基金ID篩選(該接口只能查詢機構 Open API 創建的基金)
statusfalsestring狀態篩選:PendingSubscribe(待申購)/ Active(運行中)/ Closing(關閉中)/ Closed(已關閉)
limitfalseinteger每頁數量,默認 20,最大 50
cursorfalsestring分頁游標(使用基金ID作為游標)

響應參數

參數類型說明
listarray基金列表
> fundIdstring基金唯一標識
> fundNamestring基金名稱
> coinstring基金計價幣種
> statusstring基金狀態:PendingSubscribe(待申購)/ Active(運行中)/ Closing(關閉中)/ Closed(已關閉)
> totalEquitystring基金總權益(本位幣)
> totalSharesstring基金總份額
> currentNavstring當前淨值(nav = shareValue / initialShareValue)
> currentAPRstring當前30日APR
> accountUidstring主基金子賬戶UID
> subAccountListarray當前基金附屬子賬戶UID列表
>> (元素)string子賬戶UID
> profitShareRatestring利潤分成比例(%),如 "20.00" 表示20%
> managementFeeRatestring管理費率(年化%),如 "2.00" 表示2%
> uncollectedProfitstring當前未結算分潤的資產數量(本位幣)
> collectedProfitstring歷史已結算分潤資產數量(本位幣)
> totalLoanstring當前未結算的配資規模(本位幣)
> createdTimestring基金創建時間戳(毫秒)
nextPageCursorstring下一頁游標,為空表示無更多數據

請求示例

GET /v5/earn/pwm/asset-manager/all-funds 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": [
{
"fundId": "123",
"fundName": "BTC Alpha Fund",
"coin": "BTC",
"status": "active",
"totalEquity": "10.5",
"totalShares": "1000.00",
"currentNav": "1.05",
"accountUid": "456789",
"subAccountList": ["456790", "456791"],
"profitShareRate": "20.00",
"managementFeeRate": "2.00",
"uncollectedProfit": "0.5",
"collectedProfit": "1.2",
"totalLoan": "0",
"createdTime": "1640000000000"
}
],
"nextPageCursor": "32"
}
}