Skip to main content
GET
/
v2
/
pnl
/
wallets
/
{wallet}
/
chart
Get Wallet Chart
curl --request GET \
  --url https://data.solanatracker.io/v2/pnl/wallets/{wallet}/chart \
  --header 'x-api-key: <api-key>'
{
  "wallet": "CyaE1VxvBrahnPWkqm5VsdCvyS2QmNht2UFrKJHga54o",
  "identity": {
    "name": "Cented",
    "twitter": "@Cented7",
    "avatar": "https://kol-avatar.solanatracker.io/CyaE1VxvBrahnPWkqm5VsdCvyS2QmNht2UFrKJHga54o",
    "platforms": [
      "axiom",
      "bloom"
    ],
    "type": "kol",
    "tags": [
      "kol",
      "axiom",
      "bloom"
    ]
  },
  "points": [
    {
      "date": "2025-10-14",
      "time": 1760400000,
      "pnl": {
        "realized": 6816182.11,
        "total": 6816182.11
      },
      "invested": 32254563.43,
      "proceeds": 38281423.93,
      "activity": {
        "realizedPnl": 37132.78,
        "buys": 359,
        "sells": 303,
        "volume": 365027.19,
        "avgHoldTimeSecs": 32.339436464088394
      },
      "counts": {
        "buys": 72853,
        "sells": 76328,
        "tokensTraded": 46329
      }
    },
    {
      "date": "2025-10-15",
      "time": 1760486400,
      "pnl": {
        "realized": 6856608.25,
        "total": 6856608.25
      },
      "invested": 32346009.86,
      "proceeds": 38413230.91,
      "activity": {
        "realizedPnl": 40426.14,
        "buys": 196,
        "sells": 228,
        "volume": 223253.42,
        "avgHoldTimeSecs": 45.60831132075471
      },
      "counts": {
        "buys": 73049,
        "sells": 76556,
        "tokensTraded": 46434
      }
    }
  ],
  "summary": {
    "days": {
      "trading": 180,
      "positive": 179,
      "negative": 1,
      "breakEven": 0
    },
    "totals": {
      "realizedPnl": 3574393.69,
      "volume": 40026214.46
    },
    "winRate": 99.44,
    "bestDay": {
      "date": "2026-03-23",
      "realizedPnl": 85718.59
    },
    "worstDay": {
      "date": "2025-11-12",
      "realizedPnl": -60803.14
    },
    "streaks": {
      "positive": 150,
      "negative": 1,
      "currentPositive": 150,
      "currentNegative": 0
    },
    "drawdown": {
      "amount": 515125.86,
      "percent": 5.31
    },
    "averages": {
      "dailyVolume": 222367.86,
      "dailyRealizedPnl": 19857.74,
      "holdTimeSecs": 54
    }
  },
  "pagination": {
    "count": 180,
    "hasMore": true,
    "nextTimeTo": 1760313600
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.solanatracker.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API Key for authentication

Path Parameters

wallet
string
required

Solana wallet address (base58, 32-44 characters).

Pattern: ^[1-9A-HJ-NP-Za-km-z]{32,44}$

Query Parameters

time_from
integer

Start of the range as a Unix timestamp in seconds. If omitted, returns up to 180 days before time_to.

time_to
integer

End of the range as a Unix timestamp in seconds. Defaults to now.

Response

Successful response.

wallet
string
identity
object

Unified wallet identity. Only fields with known values are returned; a wallet can carry multiple tags at once.

points
object[]
summary
object
pagination
object