Daily portfolio value chart
Returns a daily portfolio-value series for the wallet. The chart is assembled on-demand with a cron-free model:
- Closed days are read from the store and returned as-is — they are immutable once written.
- Gaps (days between the last stored point and yesterday) are filled lazily: the FIFO engine replays the wallet’s swaps to reconstruct end-of-day holdings, prices them against
ohlcv_1dcloses, and persists the result before returning. - Today is always computed live and returned as
todaywithprovisional: true— never persisted.
value_usd uses the current SOL/USD rate from the Pyth oracle for all points, including historical ones. Apply your own historical SOL/USD to value_sol if you need historically accurate USD values.
See Wallet portfolio for the full freshness model.
Authorizations
Preferred for swaps-api endpoints (/swaps/*, /stats/*, /trending, /pool-events).
Path Parameters
Wallet address (base58, 32–44 characters).
Query Parameters
How far back to go. all returns every day since the wallet's first indexed trade.
30d, 90d, 1y, all Response
Portfolio chart series
Daily portfolio value series for a wallet. Closed days are immutable and served from the store; today is always computed live.
"90d"
Closed days only. Each point is immutable once written.
Today's portfolio value, always computed live. provisional: true is always set.
Unix epoch milliseconds when this response was assembled.

