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

Path Parameters

address
string
required

Trader wallet address

Query Parameters

days
integer<int32>

Window size in days (default: 30, max: 30)

pagination_key
string

Pagination key obtained from a previous response to fetch an earlier window

Response

200 - application/json

Daily PnL entries (one per active trading day)

t
integer<int64>
required

Timestamp in epoch milliseconds (start of bucket window)

pnl
number<double>
required

Realized PnL in this bucket (USD)

Last modified on March 24, 2026