Skip to main content
GET
/
polymarket
/
tags
/
{tag}
/
analytics
/
changes
Tag analytics pct change
curl --request GET \
  --url https://api.struct.to/v1/polymarket/tags/{tag}/analytics/changes
{
  "volume_usd": 123,
  "buy_volume_usd": 123,
  "sell_volume_usd": 123,
  "merge_volume_usd": 123,
  "split_volume_usd": 123,
  "unique_traders": 123,
  "unique_makers": 123,
  "unique_takers": 123,
  "txn_count": 123,
  "fees_usd": 123,
  "shares_volume": 123,
  "yes_volume_usd": 123,
  "no_volume_usd": 123
}

Path Parameters

tag
string
required

Tag label (e.g. Politics, Sports)

Query Parameters

timeframe
enum<string>

Lookback window: 1h, 24h, 7d, 30d, 1mo, 1y (default: 24h) Lookback window for /analytics/changes endpoints.

Available options:
1h,
24h,
7d,
30d,
1mo,
1y

Response

200 - application/json

Per-metric pct change

Per-metric % change. None when the window predates the entity's data or the previous value was zero (division undefined).

volume_usd
number<double> | null
buy_volume_usd
number<double> | null
sell_volume_usd
number<double> | null
merge_volume_usd
number<double> | null
split_volume_usd
number<double> | null
unique_traders
number<double> | null
unique_makers
number<double> | null
unique_takers
number<double> | null
txn_count
number<double> | null
fees_usd
number<double> | null
shares_volume
number<double> | null
yes_volume_usd
number<double> | null
no_volume_usd
number<double> | null
Last modified on April 25, 2026