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
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.struct.to/llms.txt

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

Path Parameters

address
string
required

Trader wallet address

Query Parameters

resolution
enum<string>

Candle resolution (default: 1h)

Available options:
1m,
1h,
1d
timeframe
enum<string>

Time range (default: lifetime)

Available options:
1d,
7d,
30d,
lifetime

Response

200 - application/json

Cumulative PnL candles

t
integer<int64>
required

Timestamp in epoch seconds (start of bucket window)

pnl
number<double>
required

Realized PnL in this bucket (USD)

Last modified on May 1, 2026