Skip to main content
GET
/
v2
/
trader
/
{wallet}
/
pnl
Trader PnL Series
curl --request GET \
  --url https://api.example.com/v2/trader/{wallet}/pnl
{
  "wallet": "0xc2e7800b5af46e6093872b177b7a5e7f0563be51",
  "period": "1W",
  "series": [
    { "timestamp": 1773511200, "pnl": 1391835.20 },
    { "timestamp": 1773522000, "pnl": 3438215.00 },
    { "timestamp": 1773532800, "pnl": 3441273.50 }
  ],
  "count": 57
}
Returns a time series of cumulative PnL values for a trader.
wallet
string
required
Ethereum wallet address.
period
string
default:"1M"
Resolution. One of: 1D (hourly points), 1W (~57 points), 1M (~41 points), ALL (~223 points).
{
  "wallet": "0xc2e7800b5af46e6093872b177b7a5e7f0563be51",
  "period": "1W",
  "series": [
    { "timestamp": 1773511200, "pnl": 1391835.20 },
    { "timestamp": 1773522000, "pnl": 3438215.00 },
    { "timestamp": 1773532800, "pnl": 3441273.50 }
  ],
  "count": 57
}