Skip to main content
GET
/
v1
/
trader
/
{wallet}
/
pnl
Trader PnL series
curl --request GET \
  --url https://api.polynode.dev/v1/trader/{wallet}/pnl \
  --header 'x-api-key: <api-key>'
{
  "wallet": "0xc2e7800b5af46e6093872b177b7a5e7f0563be51",
  "period": "1W",
  "series": [
    { "timestamp": 1773511200, "pnl": 1391835.20 },
    { "timestamp": 1773522000, "pnl": 3438215.00 },
    { "timestamp": 1773532800, "pnl": 3441273.50 }
  ],
  "count": 57
}

Documentation Index

Fetch the complete documentation index at: https://polynode.mintlify.app/llms.txt

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

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
}

Authorizations

x-api-key
string
header
required

Path Parameters

wallet
string
required

Ethereum wallet address

Query Parameters

period
enum<string>
default:1M

Resolution

Available options:
1D,
1W,
1M,
ALL

Response

PnL time series

The response is of type object.