Skip to main content
GET
/
wallets
/
{w}
/
chart
Daily portfolio value chart
curl --request GET \
  --url https://api.dexploit.dev/wallets/{w}/chart \
  --header 'X-API-Key: <api-key>'
{
  "wallet": "<string>",
  "window": "90d",
  "series": [
    {
      "day": "2026-05-01",
      "value_sol": 123,
      "value_usd": 123,
      "provisional": true
    }
  ],
  "today": {
    "day": "2026-05-01",
    "value_sol": 123,
    "value_usd": 123,
    "provisional": true
  },
  "computed_at": 123
}

Authorizations

X-API-Key
string
header
required

Preferred for swaps-api endpoints (/swaps/*, /stats/*, /trending, /pool-events).

Path Parameters

w
string
required

Wallet address (base58, 32–44 characters).

Query Parameters

window
enum<string>
default:90d

How far back to go. all returns every day since the wallet's first indexed trade.

Available options:
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.

wallet
string
required
window
string
required
Example:

"90d"

series
object[]
required

Closed days only. Each point is immutable once written.

today
object
required

Today's portfolio value, always computed live. provisional: true is always set.

computed_at
integer<int64>
required

Unix epoch milliseconds when this response was assembled.