Skip to main content
GET
/
polymarket
/
tags
/
{identifier}
Get tag by slug
curl --request GET \
  --url https://api.struct.to/v1/polymarket/tags/{identifier}
{
  "id": "",
  "label": "",
  "slug": null,
  "volume_usd": null,
  "txn_count": null,
  "unique_traders": null,
  "unique_makers": null,
  "unique_takers": null,
  "fees_usd": null
}

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

identifier
string
required

Tag ID or slug

Query Parameters

include_metrics
boolean

Attach analytics metrics. +1 credit.

timeframe
enum<string>

Metrics window. Default 1d (= 24h). Ignored unless include_metrics=true. Timeframe for ?sort=... — defines the window the metric is summed over (or lifetime for all-time cumulative).

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

Response

Tag details

A Polymarket tag from the Gamma API

id
string
default:""
label
string
default:""
slug
string | null
volume_usd
number<double>
txn_count
integer<int64>
unique_traders
integer<int64>

Distinct active traders in the window.

unique_makers
integer<int64>

Distinct active makers in the window.

unique_takers
integer<int64>

Distinct active takers in the window.

fees_usd
number<double>
Last modified on May 1, 2026