Skip to main content
GET
/
v2
/
pnl
/
wallets
/
{wallet}
/
history
Get Wallet PnL Calendar
curl --request GET \
  --url https://data.solanatracker.io/v2/pnl/wallets/{wallet}/history \
  --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"
    ]
  },
  "days": [
    {
      "date": "2026-04-17",
      "cumulative": {
        "pnl": {
          "realized": 10634698.24,
          "unrealized": -1834.93,
          "total": 10632863.31
        },
        "cost": 49449916.77,
        "proceeds": 60084615.01,
        "openPositions": {
          "cost": 4125.18,
          "value": 3802.94
        },
        "counts": {
          "buys": 193365,
          "sells": 137486,
          "tokensTraded": 78007
        }
      },
      "activity": {
        "pnl": {
          "realized": 19119.76
        },
        "counts": {
          "buys": 680,
          "sells": 274
        },
        "volume": {
          "costUsd": 85101.2,
          "total": 188145.69
        },
        "averages": {
          "buy": 125.15,
          "sell": 376.07,
          "realizedPnl": 69.78,
          "holdTimeSecs": 0.06884671532846717
        }
      }
    },
    {
      "date": "2026-04-18",
      "cumulative": {
        "pnl": {
          "realized": 10649442.15,
          "unrealized": -1762.31,
          "total": 10647679.83
        },
        "cost": 49503916.09,
        "proceeds": 60153358.24,
        "openPositions": {
          "cost": 4172.59,
          "value": 4252.19
        },
        "counts": {
          "buys": 193834,
          "sells": 137680,
          "tokensTraded": 78125
        }
      },
      "activity": {
        "pnl": {
          "realized": 14625.1
        },
        "counts": {
          "buys": 470,
          "sells": 194
        },
        "volume": {
          "costUsd": 53226.11,
          "total": 121969.34
        },
        "averages": {
          "buy": 113.25,
          "sell": 354.35,
          "realizedPnl": 75.39,
          "holdTimeSecs": 0.008350515463917524
        }
      }
    }
  ],
  "summary": {
    "days": {
      "trading": 3,
      "positive": 3,
      "negative": 0,
      "breakEven": 0
    },
    "totals": {
      "realizedPnl": 40077.97,
      "volume": 378627.53
    },
    "winRate": 100,
    "totalDays": 8,
    "deltas": {
      "realized": 21077.02,
      "total": 21628.76
    }
  }
}

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

period
enum<string>

Quick date range shorthand. Ignored if start/end are set.

Available options:
1d,
7d,
14d,
30d,
90d,
all
start
string<date>

Start date (YYYY-MM-DD). Defaults to 30 days ago.

end
string<date>

End date (YYYY-MM-DD). Defaults to today.

limit
integer
default:365

Maximum number of days to return. If more days exist, returns the most recent ones.

Required range: x <= 1000

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.

days
object[]
summary
object