Skip to main content
GET
/
polymarket
/
trader
/
volume-chart
/
{address}
Get trader volume chart
curl --request GET \
  --url https://api.struct.to/v1/polymarket/trader/volume-chart/{address}
[
  {
    "t": 123,
    "v": 123,
    "bv": 123,
    "sv": 123,
    "tc": 123,
    "btc": 123,
    "stc": 123
  }
]

Path Parameters

address
string
required

Trader wallet address

Query Parameters

resolution
enum<string>

Time interval: 60, 240, D, 1D, W, 1W, M, 1M (default: 60) Bucket size for /analytics/timeseries and /analytics/deltas responses. Each value picks the time interval that one row in the output covers: 60 = 1 hour, 240 = 4 hours, D/1D = 1 day, W/1W = 7 days, M/1M = calendar month.

Available options:
60,
240,
D,
1D,
W,
1W,
M,
1M
count_back
integer<int32>

Number of data points (max: 2500)

from
integer<int64>

Start timestamp (Unix seconds)

to
integer<int64>

End timestamp (Unix seconds)

Response

200 - application/json

Trader volume with buy/sell breakdown over time

t
integer<int64>
required

Unix timestamp in seconds.

v
number<double>
required

Total volume in USD.

bv
number<double>
required

Buy volume in USD.

sv
number<double>
required

Sell volume in USD.

tc
integer<int64>
required

Total transaction count.

btc
integer<int64>
required

Buy transaction count.

stc
integer<int64>
required

Sell transaction count.

Last modified on June 17, 2026