Skip to main content

Get Fund Historical NAV

info

The maximum allowed time range between startTime and endTime is 180 days.

HTTP Request

GET/v5/earn/pwm/investment-plan/fund-nav

Request Parameters

ParameterRequiredTypeComments
fundIdtruestringFund ID
startTimefalseintStart timestamp (ms). Default: current time minus 7 days
endTimefalseintEnd timestamp (ms). Default: current time

Response Parameters

ParameterTypeComments
fundIdstringFund ID
fundNamestringFund name
coinstringFund denomination coin
currentNavstringLatest NAV (= currentShareValue / initialShareValue)
dataPointsarrayNAV data point list, sorted in ascending order by date
> datestringDate in YYYY-MM-DD format
> navstringNAV for that day, taken from the daily settlement snapshot

Request Example

GET /v5/earn/pwm/investment-plan/fund-nav?fundId=2001 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,
"result": {
"fundId": "2001",
"fundName": "Market Neutral Alpha",
"coin": "USDT",
"currentNav": "1.035",
"dataPoints": [
{
"date": "2024-11-01",
"nav": "1.028"
},
{
"date": "2024-11-02",
"nav": "1.031"
}
]
}
}