?tag_slug= on /v2/wallets/{addr}/positions/onchain and /v2/onchain/positions. Use this endpoint to populate dropdowns, autocomplete inputs, or to discover new tags as Polymarket adds them.
Request
| Parameter | Type | Description |
|---|---|---|
details | boolean (optional) | When true, returns enriched per-tag objects (markets, events, first/last seen timestamps). Default: returns just an array of slug strings. |
prefix | string (optional) | Case-sensitive starts-with match. ?prefix=nba returns nba, nba-finals, nba-playoffs, etc. |
min_markets | integer (optional) | Filter out long-tail tags. ?min_markets=10000 returns ~48 mainstream tags. ?min_markets=100 returns the ~700 tags worth surfacing in a UI. |
sort | string (optional) | popularity (default, by market count desc) or alpha (alphabetical). |
limit | integer (optional) | Default 10,000 / max 10,000 (the full namespace fits comfortably in one response). |
Response
Default (lightweight — just slugs)
With ?details=true
| Field | Type | Description |
|---|---|---|
slug | string | The tag value to use in ?tag_slug= |
markets | number | How many markets on Polymarket carry this tag |
events | number | How many distinct parent events carry this tag |
first_seen_at | number | Unix seconds — earliest market.created_at for any market with this tag |
last_seen_at | number | Unix seconds — latest market.created_at for any market with this tag (use to detect freshly-active tags) |
What’s in the namespace
The 5,779 tags break down roughly as follows:| Coverage | Tag count | Examples |
|---|---|---|
| 100K+ markets | 10 | sports, games, crypto, recurring, up-or-down |
| 10K-100K | 38 | basketball, nba, bitcoin, ethereum, soccer, tennis, politics |
| 1K-10K | 133 | weather, dota-2, counter-strike-2, weekly, nfl, mlb |
| 100-1K | 516 | Specific sports leagues, asset themes, event categories |
| Long tail | ~5,000 | Event-specific tags (fema, dallas-stars, gustavo-petro, walmart) |
min_markets >= 100) are useful — the long tail is dominated by one-off event tags that match a single market each.
Examples
Get all tags (default lightweight list)
Get only mainstream tags (worth surfacing in a UI)
Discover NBA-related tags
nba, nba-playoffs, nba-finals, nba-draft, nba-all-star, etc. — useful for narrowing a sports filter to a specific basketball context.
Find recently-introduced tags
Refresh cadence
The materialized view backing this endpoint refreshes once per hour. New tags appearing on Polymarket show up here within an hour of the metadata-ingester picking them up (typically minutes). Existing tags’markets / events counts and last_seen_at lag by at most 60 minutes.
This endpoint is read-only and additive — calling it does not affect any other endpoint or response shape.
Related
/v2/wallets/{addr}/positions/onchain— filter wallet positions by tag (?tag_slug=)/v2/onchain/positions— same filter on the paginated unified feed

