Skip to main content
GET
/
polymarket
/
trader
/
pnl
/
{address}
/
candles
Get trader PnL candles
curl --request GET \
  --url https://api.struct.to/v1/polymarket/trader/pnl/{address}/candles
[
  {
    "t": 123,
    "pnl": 123
  }
]

Path Parameters

address
string
required

Trader wallet address

Query Parameters

resolution
enum<string>

Candle resolution: 1m, 1h, 1d (default: 1h)

Available options:
1m,
1h,
1d
start_ts
integer<int64>

Start timestamp (Unix seconds)

end_ts
integer<int64>

End timestamp (Unix seconds)

limit
integer<int32>

Results limit (default: 1440, max: 10000)

Response

200 - application/json

PnL candles for equity curve charting

t
integer<int64>
required

Timestamp in epoch seconds (start of bucket window)

pnl
number<double>
required

Sum of realized PnL in this bucket

Last modified on March 17, 2026