Skip to main content

Get All Funds

info

Results are sorted by fund ID in descending order (newest first).

HTTP Request

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

Request Parameters

ParameterRequiredTypeComments
coinfalsestringFilter by coin
fundIdfalsestringFilter by fund ID. Only funds created by the institution via Open API can be queried
statusfalsestringFilter by status: PendingSubscribe / Active / Closing / Closed
limitfalseintegerPage size. Default: 20, max: 50
cursorfalsestringPagination cursor (uses fund ID as cursor)

Response Parameters

ParameterTypeComments
listarrayFund list
> fundIdstringUnique fund identifier
> fundNamestringFund name
> coinstringFund denomination coin
> statusstringFund status: PendingSubscribe / Active / Closing / Closed
> totalEquitystringTotal fund equity (base coin)
> totalSharesstringTotal fund shares
> currentNavstringCurrent NAV (= shareValue / initialShareValue)
> currentAPRstringCurrent 30-day APR
> accountUidstringMain fund sub-account UID
> subAccountListarraySub-account UIDs attached to this fund
>> (element)stringSub-account UID
> profitShareRatestringProfit sharing rate (%), e.g. "20.00" means 20%
> managementFeeRatestringManagement fee rate (annualized %), e.g. "2.00" means 2%
> uncollectedProfitstringUnsettled profit-sharing amount (base coin)
> collectedProfitstringHistorically settled profit-sharing amount (base coin)
> totalLoanstringCurrent unsettled leverage amount (base coin)
> createdTimestringFund creation timestamp (milliseconds)
nextPageCursorstringNext page cursor. Empty string indicates no more data

Request Example

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

Response Example

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