Skip to main content

Get Asset Trend

HTTP Request

GET/v5/earn/pwm/investment-plan/asset-trend

Request Parameters

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

Response Parameters

ParameterTypeComments
planIdstringInvestment plan ID
dataPointsarrayAsset data point list, sorted in ascending order by date
> datestringDate in YYYY-MM-DD format
> assetValueUsdstringTotal plan assets on that day (USD valuation), taken from the daily settlement snapshot

Request Example

GET /v5/earn/pwm/investment-plan/asset-trend?planId=10001 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": {
"planId": "10001",
"dataPoints": [
{
"date": "2024-11-01",
"assetValueUsd": "198500.00"
},
{
"date": "2024-11-02",
"assetValueUsd": "199100.00"
}
]
}
}