跳至主要内容

查詢基金歷史淨值

信息

startTimeendTime 的時間範圍最多為 180 天

HTTP 請求

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

請求參數

參數是否必需類型說明
fundIdtruestring基金ID
startTimefalseint起始時間戳(ms),默認當前時間-7天
endTimefalseint結束時間戳(ms),默認當前時間

響應參數

參數類型說明
fundIdstring基金ID
fundNamestring基金名稱
coinstring基金計價幣種
currentNavstring最新淨值(= currentShareValue / initialShareValue)
dataPointsarray淨值數據點列表,按日期升序排列
> datestring日期,格式 YYYY-MM-DD
> navstring當日淨值,取每日結算快照

請求示例

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

響應示例

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