# Polymarket Prediction Market Scraper (`parseforge/polymarket-scraper`) Actor

Scrape Polymarket prediction markets at scale. Live odds, volume, liquidity, outcomes, and resolution history. Filter by category, status, date, or volume. Optional CLOB orderbook depth.

- **URL**: https://apify.com/parseforge/polymarket-scraper.md
- **Developed by:** [ParseForge](https://apify.com/parseforge) (community)
- **Categories:** Business, News
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $22.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

![ParseForge Banner](https://raw.githubusercontent.com/ParseForge/apify-assets/main/banner.jpg)

## 📈 Polymarket Prediction Market Scraper

> 🚀 **Pull live prediction market data in seconds.** Filter by category, status, volume, or date range. No API key, no wallet, no manual CSV wrangling.

> 🕒 **Last updated:** 2026-05-16 · **📊 38 fields** per record · **3,600+ categories** · **Live odds + volume** · **Optional CLOB orderbook depth**

Polymarket is one of the largest decentralized prediction markets, with billions of dollars in cumulative trading volume across politics, sports, crypto, geopolitics, and pop culture. Each event groups dozens of binary "Yes/No" markets around a single question. This actor turns the live Polymarket catalog into a structured dataset of events and markets, complete with current odds, 24-hour and weekly volume, liquidity, open interest, outcome prices, and competitiveness scores. Every record comes straight from the public Gamma API, no signed wallet transactions, no rate limits to manage, no JavaScript bundle to reverse-engineer.

The output is built for analysts, traders, journalists, and researchers who need prediction-market data in flat tabular form. You pick a category (or none), a sort order, optional volume and date filters, and the scraper returns events with all child markets nested, or one row per individual market. An opt-in flag fetches the full CLOB order book per outcome token, so you can capture bid and ask depth alongside the headline prices. The result is a clean dataset that drops straight into a dashboard, a backtest, a newsletter chart, or a fine-tuning corpus, in under 30 seconds.

| 🎯 Target audience | 💡 Primary use cases |
|---|---|
| Crypto traders, prediction-market analysts | Build trading signals from real-time market movements |
| Journalists and newsletter writers | Cite live sentiment data on world events |
| Data scientists and ML researchers | Train forecasting models with historical odds |
| Academic researchers in forecasting | Study prediction-market accuracy versus outcomes |

---

### 📋 What the Polymarket Prediction Market Scraper does

- 🏷️ **Category filtering.** Pick from 3,600+ Polymarket category slugs, including politics, sports, crypto, geopolitics, AI, economy, weather, and culture.
- 🔍 **Free-text search.** Pass a search query to surface events whose titles match a keyword, ticker, or person.
- 📊 **Two output shapes.** Events mode returns one record per event with all child markets nested. Markets mode flattens to one row per binary Yes/No question.
- 💰 **Volume and liquidity gates.** Set minimum total volume or current liquidity to skip noise and focus on actively traded markets.
- 📅 **Date-range filtering.** Bound start and end dates to pull a specific election cycle, sports season, or resolution window.
- 📈 **Optional orderbook depth.** Toggle the orderbook flag to attach full CLOB bid and ask ladders for every market outcome.

Each record carries the headline title, slug, canonical Polymarket URL, image, current outcome prices, best bid and ask, last trade price, 24-hour and weekly volume, total volume and liquidity, open interest, price changes across multiple windows, a competitiveness score, category tags, resolution metadata, and a scrape timestamp. Events also include the nested array of child markets, each with the same trading fields.

> 💡 **Why it matters:** Prediction markets aggregate real money bets into a single probability for any verifiable future event. That signal is increasingly used by traders for hedging, journalists for sentiment, and ML teams for forecasting training data. Pulling it on a schedule turns a live trading venue into a structured time series.

---

### 🎬 Full Demo

🚧 Coming soon: a 3-minute walkthrough showing category filtering, search, markets-mode pivot, and orderbook depth in action.

---

### ⚙️ Input

<table>
<thead>
<tr><th>Field</th><th>Type</th><th>Description</th></tr>
</thead>
<tbody>
<tr><td><code>searchQuery</code></td><td>string</td><td>Free-text search across event and market titles. Leave blank to browse the full catalog.</td></tr>
<tr><td><code>maxItems</code></td><td>integer</td><td>Free users limited to 10 items. Paid users up to 1,000,000.</td></tr>
<tr><td><code>scrapeMode</code></td><td>string</td><td><code>events</code> (grouped, with nested markets) or <code>markets</code> (one row per binary question).</td></tr>
<tr><td><code>tagSlugs</code></td><td>array&lt;string&gt;</td><td>One or more Polymarket category slugs. 3,600+ enumerated. Common: politics, sports, crypto, geopolitics, ai, economy.</td></tr>
<tr><td><code>status</code></td><td>string</td><td><code>active</code>, <code>closed</code>, <code>archived</code>, or <code>all</code>.</td></tr>
<tr><td><code>sortBy</code></td><td>string</td><td>One of: volume24hr, volume1wk, volume1mo, volume1yr, volume, liquidity, openInterest, competitive, startDate, endDate, createdAt, oneDayPriceChange, oneWeekPriceChange, oneMonthPriceChange.</td></tr>
<tr><td><code>sortDirection</code></td><td>string</td><td><code>desc</code> (biggest first, default) or <code>asc</code>.</td></tr>
<tr><td><code>minVolume</code></td><td>integer</td><td>Skip events or markets below this total USDC volume.</td></tr>
<tr><td><code>minLiquidity</code></td><td>integer</td><td>Skip events or markets below this current USDC liquidity.</td></tr>
<tr><td><code>startDateMin</code></td><td>string</td><td>ISO date or datetime. Lower bound on start date.</td></tr>
<tr><td><code>startDateMax</code></td><td>string</td><td>ISO date or datetime. Upper bound on start date.</td></tr>
<tr><td><code>endDateMin</code></td><td>string</td><td>ISO date or datetime. Lower bound on end date.</td></tr>
<tr><td><code>endDateMax</code></td><td>string</td><td>ISO date or datetime. Upper bound on end date.</td></tr>
<tr><td><code>includeOrderbook</code></td><td>boolean</td><td>If true, fetch full CLOB bid and ask depth for every market outcome.</td></tr>
</tbody>
</table>

Example: pull the 50 most-traded active politics events from the last 24 hours.

```json
{
    "maxItems": 50,
    "scrapeMode": "events",
    "tagSlugs": ["politics"],
    "status": "active",
    "sortBy": "volume24hr",
    "sortDirection": "desc"
}
````

Example: search for Bitcoin-related markets with orderbook depth, flattened to one row per binary question.

```json
{
    "maxItems": 100,
    "scrapeMode": "markets",
    "searchQuery": "bitcoin",
    "status": "active",
    "minLiquidity": 1000,
    "includeOrderbook": true
}
```

> ⚠️ **Good to Know:** Polymarket events often bundle dozens of child markets under one question (a 60-team World Cup winner, for example). Use `events` mode to keep them grouped and `markets` mode to pivot to one row per Yes/No question.

***

### 📊 Output

Each record contains live prediction-market data with the canonical Polymarket URL, current outcome prices, trading metrics across multiple time windows, category tags, and resolution metadata.

#### 🧾 Schema

| Field | Type | Example |
|---|---|---|
| 🖼️ `imageUrl` | string | https://polymarket-upload.s3... |
| 🏷️ `title` | string | "2026 FIFA World Cup Winner" |
| 🔗 `url` | string | https://polymarket.com/event/2026-fifa-world-cup-winner-595 |
| 🆔 `id` | string | "30615" |
| 🧭 `slug` | string | "2026-fifa-world-cup-winner-595" |
| 🧱 `type` | string | "event" or "market" |
| 🚦 `status` | string | "active", "closed", "archived" |
| 📂 `category` | string | "Soccer" |
| 🎯 `outcomes` | array | \["Yes", "No"] |
| 💵 `outcomePrices` | array\<number> | \[0.1655, 0.8345] |
| 📥 `bestBid` | number | 0.165 |
| 📤 `bestAsk` | number | 0.166 |
| 💱 `lastTradePrice` | number | 0.165 |
| ↔️ `spread` | number | 0.001 |
| 💰 `volume` | number | 993780015.83 |
| 📊 `volume24hr` | number | 8821793.94 |
| 📈 `volume1wk` | number | 78280829.18 |
| 📉 `volume1mo` | number | 335004429.36 |
| 🗓️ `volume1yr` | number | 985106793.01 |
| 💧 `liquidity` | number | 234048873.36 |
| 🔒 `openInterest` | number | 13217861.66 |
| ⏱️ `oneDayPriceChange` | number | 0.015 |
| 📆 `oneWeekPriceChange` | number | 0.012 |
| 🗒️ `oneMonthPriceChange` | number | -0.007 |
| 🏁 `competitive` | number | 0.9036 |
| 🏷️ `tags` | array\<string> | \["Soccer", "Sports", "FIFA World Cup"] |
| 📝 `description` | string | "This market resolves..." |
| 🎬 `startDate` | string | "2025-07-02T22:28:24Z" |
| 🛑 `endDate` | string | "2026-07-20T00:00:00Z" |
| 🛎️ `createdAt` | string | "2025-07-02T16:54:39Z" |
| 🔁 `updatedAt` | string | "2026-05-16T07:21:08Z" |
| 📜 `resolutionSource` | string | "Official FIFA announcement" |
| 💬 `commentCount` | number | 730 |
| 🔢 `marketsCount` | number | 60 |
| 📦 `markets` | array | \[{ id, question, outcomePrices, ... }] |
| 📚 `orderbook` | object | { bids: \[...], asks: \[...] } |
| 🕓 `scrapedAt` | string | "2026-05-16T07:31:18Z" |
| 🐛 `error` | string | (only present on failure) |

#### 📦 Sample records

<details>
<summary>Typical: big multi-market event (FIFA World Cup, 60 child markets)</summary>

```json
{
    "imageUrl": "https://polymarket-upload.s3.us-east-2.amazonaws.com/2026-fifa-world-cup-winner-595-8rgoVIZnbKgL.png",
    "title": "2026 FIFA World Cup Winner",
    "url": "https://polymarket.com/event/2026-fifa-world-cup-winner-595",
    "id": "30615",
    "slug": "2026-fifa-world-cup-winner-595",
    "type": "event",
    "status": "active",
    "category": "Soccer",
    "outcomes": ["Yes", "No"],
    "outcomePrices": [0.1655, 0.8345],
    "bestBid": 0.165,
    "bestAsk": 0.166,
    "lastTradePrice": 0.165,
    "spread": 0.001,
    "volume": 993780015.83,
    "volume24hr": 8821793.94,
    "volume1wk": 78280829.18,
    "liquidity": 234048873.36,
    "openInterest": 13217861.66,
    "oneWeekPriceChange": 0.012,
    "competitive": 0.9036,
    "tags": ["Soccer", "Sports", "FIFA World Cup", "2026 FIFA World Cup"],
    "startDate": "2025-07-02T22:28:24Z",
    "endDate": "2026-07-20T00:00:00Z",
    "marketsCount": 60,
    "scrapedAt": "2026-05-16T07:31:18Z"
}
```

</details>

<details>
<summary>Edge case: short-lived sports event with extreme price asymmetry</summary>

```json
{
    "imageUrl": "https://polymarket-upload.s3.us-east-2.amazonaws.com/super+cool+basketball+in+red+and+blue+wow.png",
    "title": "Spurs vs. Timberwolves",
    "url": "https://polymarket.com/event/nba-sas-min-2026-05-15",
    "id": "465143",
    "slug": "nba-sas-min-2026-05-15",
    "type": "event",
    "status": "active",
    "category": "Sports",
    "outcomes": ["Odd", "Even"],
    "outcomePrices": [0, 1],
    "bestBid": null,
    "bestAsk": 0.001,
    "lastTradePrice": 0.999,
    "spread": 0.001,
    "volume": 8275518.85,
    "volume24hr": 6571283.35,
    "liquidity": 14.25,
    "openInterest": 1210871.14,
    "competitive": 0.1097,
    "tags": ["Sports", "NBA", "Games", "Basketball"],
    "startDate": "2026-05-09T11:56:59Z",
    "endDate": "2026-05-15T04:00:00Z",
    "marketsCount": 52,
    "scrapedAt": "2026-05-16T07:31:18Z"
}
```

</details>

<details>
<summary>Sparse: open-ended crypto question with no fixed end date</summary>

```json
{
    "imageUrl": "https://polymarket-upload.s3.us-east-2.amazonaws.com/BTC+fullsize.png",
    "title": "When will Bitcoin hit $150k?",
    "url": "https://polymarket.com/event/when-will-bitcoin-hit-150k",
    "id": "36173",
    "slug": "when-will-bitcoin-hit-150k",
    "type": "event",
    "status": "active",
    "category": "Bitcoin",
    "outcomes": ["Yes", "No"],
    "outcomePrices": [0, 1],
    "bestBid": null,
    "bestAsk": 0.001,
    "lastTradePrice": 1,
    "spread": 0.001,
    "volume": 18360481.24,
    "volume24hr": 5821943.55,
    "liquidity": 49842.42,
    "openInterest": 530643.20,
    "competitive": 0.8591,
    "tags": ["Bitcoin", "Crypto", "Crypto Prices"],
    "startDate": "2025-08-07T16:32:57Z",
    "endDate": null,
    "resolutionSource": null,
    "marketsCount": 5,
    "scrapedAt": "2026-05-16T07:31:18Z"
}
```

</details>

***

### ✨ Why choose this Actor

| | Capability |
|---|---|
| 🏷️ | **3,600+ category slugs.** Every Polymarket tag is enumerated in the input schema, no guessing required. |
| 🔄 | **Two output shapes.** Group child markets under one event, or pivot to one row per binary question. |
| 📚 | **Optional orderbook depth.** Pull full CLOB bid and ask ladders for every market outcome on demand. |
| 🔍 | **Free-text search.** Surface events by keyword, ticker, or person without browsing the full catalog. |
| 📊 | **Full trading metrics.** 24-hour, weekly, monthly, and yearly volume, liquidity, open interest, multiple price-change windows, competitiveness. |
| 🚦 | **Status filters.** Pull active markets, resolved closed markets, or archived markets for historical study. |
| ⚡ | **No API key, no wallet.** Pure HTTP against the public Gamma API. Runs in seconds, scales to the full catalog. |

> 📊 5 records returned in under one second on a clean cold start.

***

### 📈 How it compares to alternatives

| Approach | Cost | Coverage | Refresh | Filters | Setup |
|---|---|---|---|---|---|
| **⭐ Polymarket Prediction Market Scraper** *(this Actor)* | Pay-per-use | Full live catalog | Real-time | Category, status, volume, date, search | Click run |
| Direct Gamma API | Free (until rate-limited) | Full | Real-time | Yes | Read docs, build pagination, parse fields |
| Paid market-data APIs | Subscription | Cross-venue | Real-time | Yes | Sign up, manage keys |
| DIY browser scraper | Engineering time | Page-limited | On-demand | Manual | Build, host, maintain |
| Legacy CSV dumps | Free | Stale snapshot | Days late | No | Hunt, clean, reformat |

If you need fresh prediction-market data without managing pagination, retries, or schema drift, this Actor handles the whole pipeline.

***

### 🚀 How to use

1. ✍️ **Sign up.** Create a free [Apify account](https://console.apify.com/sign-up?fpr=vmoqkp).
2. 🔎 **Open the Actor.** Land on the run page and review the input form.
3. 🎛️ **Configure filters.** Pick a category, status, sort order, and any volume or date bounds. Leave blank for the full active catalog.
4. ▶️ **Run.** Click Start and watch the live log push records as they arrive.
5. 📥 **Export.** Download as JSON, CSV, Excel, or HTML, or hit the dataset API from your own code.

> ⏱️ **Total time:** under 30 seconds for the default 10-item preview, under 5 minutes for 10,000 events.

***

### 💼 Business use cases

<table>
<tr>
<td width="50%">

#### 📈 Trading desks

- Cross-reference Polymarket odds with order book depth on derivatives
- Build event-driven trading signals from 24h volume spikes
- Hedge directional exposure against political or macro events
- Backtest sentiment-based strategies against resolved markets

</td>
<td width="50%">

#### 📰 Journalists and analysts

- Cite live prediction-market odds in opinion and analysis pieces
- Track shifts in election or geopolitical sentiment across the week
- Compare prediction-market consensus with polling and survey data
- Surface the most-traded events for newsletter or social posts

</td>
</tr>
<tr>
<td width="50%">

#### 🧠 AI and ML teams

- Train forecasting models on historical odds versus actual outcomes
- Build sentiment features for downstream models in finance and politics
- Curate datasets of resolved binary questions for calibration research
- Stream live odds into retrieval-augmented generation pipelines

</td>
<td width="50%">

#### 🏛️ Researchers and academics

- Study prediction-market accuracy across categories and time horizons
- Quantify the wisdom-of-crowds effect on geopolitical events
- Track how new information moves odds in real time
- Compare DeFi prediction markets with traditional polling

</td>
</tr>
</table>

***

### 🌟 Beyond business use cases

Data like this powers more than commercial workflows. The same structured records support research, education, civic projects, and personal initiatives.

<table>
<tr>
<td width="50%">

#### 🎓 Research and academia

- Empirical datasets for papers, thesis work, and coursework
- Longitudinal studies tracking changes across snapshots
- Reproducible research with cited, versioned data pulls
- Classroom exercises on data analysis and ethical scraping

</td>
<td width="50%">

#### 🎨 Personal and creative

- Side projects, portfolio demos, and indie app launches
- Data visualizations, dashboards, and infographics
- Content research for bloggers, YouTubers, and podcasters
- Hobbyist collections and personal trackers

</td>
</tr>
<tr>
<td width="50%">

#### 🤝 Non-profit and civic

- Transparency reporting and accountability projects
- Advocacy campaigns backed by public-interest data
- Community-run databases for local issues
- Investigative journalism on public records

</td>
<td width="50%">

#### 🧪 Experimentation

- Prototype AI and machine-learning pipelines with real data
- Validate product-market hypotheses before engineering spend
- Train small domain-specific models on niche corpora
- Test dashboard concepts with live input

</td>
</tr>
</table>

***

### 🔌 Automating Polymarket Prediction Market Scraper

Trigger this Actor from your own stack and pull the dataset wherever you need it.

- [**Node.js client**](https://docs.apify.com/sdk/js) - call the Actor and stream results with the official Apify SDK.
- [**Python client**](https://docs.apify.com/sdk/python) - run jobs and read datasets directly from a Python script.
- [**API reference**](https://docs.apify.com/api/v2) - hit the REST endpoints from any language or no-code tool.

Set up [Apify schedules](https://docs.apify.com/platform/schedules) to run the scraper every hour, every morning before market open, or right before a known resolution event. The output dataset stays addressable by ID for downstream pipelines.

***

### ❓ Frequently Asked Questions

<details>
<summary>📊 <b>How fresh is the data?</b></summary>

Every run hits the live Polymarket Gamma API at the moment you press Start. Odds, volume, and liquidity are current as of the scrape timestamp, which is included on every record.

</details>

<details>
<summary>🔢 <b>How many markets does Polymarket have?</b></summary>

Tens of thousands of binary markets are open or resolved at any time, grouped into thousands of multi-market events. The catalog grows constantly as new questions are deployed and old ones resolve.

</details>

<details>
<summary>🏷️ <b>Can I filter by topic?</b></summary>

Yes. The Categories input accepts any of the 3,600+ Polymarket tag slugs, enumerated in the input form. Popular picks include politics, sports, crypto, geopolitics, ai, and economy. Combine with status, volume, or date filters.

</details>

<details>
<summary>📚 <b>Can I get the full order book?</b></summary>

Yes. Toggle Include orderbook depth in the input. The scraper attaches the full bid and ask ladders from the CLOB API for every market outcome. This adds one HTTP call per outcome token, so it is slower.

</details>

<details>
<summary>🧪 <b>Does it work for resolved or archived markets?</b></summary>

Yes. Set Status to closed for resolved markets, archived for hidden ones, or all for everything. Sort by createdAt or endDate to walk the historical catalog.

</details>

<details>
<summary>💸 <b>Is commercial use allowed?</b></summary>

You are responsible for compliance with Polymarket's terms of service and your local laws. Public market data is typically permitted for analysis, journalism, and research. Confirm before redistributing or using the data in a paid product.

</details>

<details>
<summary>💳 <b>Do I need a paid Apify plan?</b></summary>

A free account works for previews up to 10 items. For full catalog scrapes, scheduled runs, or large exports, an Apify paid plan gives you up to 1,000,000 items per run plus higher concurrency and storage.

</details>

<details>
<summary>🛠️ <b>What happens if a run fails?</b></summary>

Transient HTTP errors are retried up to four times with exponential backoff. If a run still cannot finish, the error is written to the dataset as a record so you can inspect it without losing the partial output.

</details>

<details>
<summary>⚖️ <b>Is this legal?</b></summary>

Pulling public market data from a public API is generally permitted. You are responsible for your jurisdiction's rules on prediction-market data, redistribution, and onward use. Consult counsel for anything beyond personal analysis or journalism.

</details>

<details>
<summary>🪙 <b>Do I need a crypto wallet?</b></summary>

No. The scraper only reads the public Gamma and CLOB APIs. No wallet, signing key, or USDC balance is required.

</details>

<details>
<summary>🔁 <b>Can I run this on a schedule?</b></summary>

Yes. Apify schedules let you run this Actor every hour, every morning, or on a custom cron. Each run writes to a new dataset, addressable by ID for downstream pipelines.

</details>

<details>
<summary>📦 <b>What output formats are supported?</b></summary>

Datasets are exportable as JSON, JSON Lines, CSV, Excel, XML, RSS, or HTML. The default REST API returns JSON. The Overview view in the console shows the key trading fields in table form.

</details>

***

### 🔌 Integrate with any app

- [**Zapier**](https://zapier.com) - push records to spreadsheets, Slack, or your CRM on every run.
- [**Make**](https://www.make.com) - chain the scraper into multi-step automations with branching logic.
- [**n8n**](https://n8n.io) - self-host an open workflow that triggers the Actor on a cron.
- [**Airbyte**](https://airbyte.com) - sync the dataset into Snowflake, BigQuery, or Postgres on a schedule.
- [**Google Sheets**](https://workspace.google.com/products/sheets/) - import results directly via the Apify integration.
- [**Slack**](https://slack.com) - get notified when a scheduled run finishes or surfaces a volume spike.

***

### 🔗 Recommended Actors

- [**📊 Yahoo Finance Stock & Crypto Scraper**](https://apify.com/parseforge/yahoo-finance-scraper) - pull live stock and crypto quotes to cross-reference with Polymarket odds.
- [**🪙 CoinGecko Cryptocurrency Scraper**](https://apify.com/parseforge/coingecko-scraper) - grab spot prices and market caps for crypto questions on Polymarket.
- [**🦙 DefiLlama DeFi Protocol Scraper**](https://apify.com/parseforge/defillama-scraper) - track DeFi TVL alongside on-chain prediction market data.
- [**📰 Google News Scraper**](https://apify.com/parseforge/google-news-scraper) - pair odds movement with headline volume on the same topics.
- [**🐦 X.com Post Scraper**](https://apify.com/parseforge/x-com-scraper) - mine social sentiment around active Polymarket events.

> 💡 **Pro Tip:** browse the complete [ParseForge collection](https://apify.com/parseforge) for more data scrapers across finance, news, real estate, and public records.

***

**🆘 Need Help?**
[**Open our contact form**](https://tally.so/r/BzdKgA) and a real human will reply within one business day.

***

> ⚠️ **Disclaimer:** This Actor accesses publicly available data from Polymarket's public Gamma and CLOB APIs. You are responsible for compliance with Polymarket's terms of service, applicable laws in your jurisdiction, and any onward use of the data. Nothing in the output is financial advice. Verify resolutions and live odds at the source before trading.

# Actor input Schema

## `searchQuery` (type: `string`):

Free-text search across event and market titles. Leave blank to browse all markets.

## `maxItems` (type: `integer`):

Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000.

## `scrapeMode` (type: `string`):

Events return one record per prediction-market event (with all child binary markets nested). Markets returns one record per individual binary market (each Yes/No question).

## `tagSlugs` (type: `array`):

Filter by one or more Polymarket category slugs. Common picks: politics, sports, crypto, geopolitics, ai, economy.

## `status` (type: `string`):

Active = open for trading. Closed = market resolved or stopped accepting orders. Archived = removed from public listings. All = no status filter.

## `sortBy` (type: `string`):

Field used to order results before applying max items.

## `sortDirection` (type: `string`):

Descending = biggest first (default). Ascending = smallest first.

## `minVolume` (type: `integer`):

Only include markets/events whose total volume is at or above this number.

## `minLiquidity` (type: `integer`):

Only include markets/events whose current liquidity is at or above this number.

## `startDateMin` (type: `string`):

ISO-8601 date or datetime. Only include events/markets that started on or after this point.

## `startDateMax` (type: `string`):

ISO-8601 date or datetime. Only include events/markets that started on or before this point.

## `endDateMin` (type: `string`):

ISO-8601 date or datetime. Only include events/markets that end on or after this point.

## `endDateMax` (type: `string`):

ISO-8601 date or datetime. Only include events/markets that end on or before this point.

## `includeOrderbook` (type: `boolean`):

Fetch full CLOB order book (bids + asks) for every market outcome. Slower; adds one HTTP call per outcome token.

## Actor input object example

```json
{
  "maxItems": 10,
  "scrapeMode": "events",
  "status": "active",
  "sortBy": "volume24hr",
  "sortDirection": "desc",
  "includeOrderbook": false
}
```

# Actor output Schema

## `predictionMarkets` (type: `string`):

Complete dataset with all scraped Polymarket events or markets, including outcomes, odds, volume, liquidity, and resolution data

## `overview` (type: `string`):

Overview view with key Polymarket fields displayed in table format

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "maxItems": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("parseforge/polymarket-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "maxItems": 10 }

# Run the Actor and wait for it to finish
run = client.actor("parseforge/polymarket-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "maxItems": 10
}' |
apify call parseforge/polymarket-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=parseforge/polymarket-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Polymarket Prediction Market Scraper",
        "description": "Scrape Polymarket prediction markets at scale. Live odds, volume, liquidity, outcomes, and resolution history. Filter by category, status, date, or volume. Optional CLOB orderbook depth.",
        "version": "0.0",
        "x-build-id": "x5uHyz606si2lhsno"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/parseforge~polymarket-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-parseforge-polymarket-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/parseforge~polymarket-scraper/runs": {
            "post": {
                "operationId": "runs-sync-parseforge-polymarket-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/parseforge~polymarket-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-parseforge-polymarket-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "searchQuery": {
                        "title": "Search query",
                        "type": "string",
                        "description": "Free-text search across event and market titles. Leave blank to browse all markets."
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 1000000,
                        "type": "integer",
                        "description": "Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000."
                    },
                    "scrapeMode": {
                        "title": "Scrape mode",
                        "enum": [
                            "events",
                            "markets"
                        ],
                        "type": "string",
                        "description": "Events return one record per prediction-market event (with all child binary markets nested). Markets returns one record per individual binary market (each Yes/No question).",
                        "default": "events"
                    },
                    "tagSlugs": {
                        "title": "Categories",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Filter by one or more Polymarket category slugs. Common picks: politics, sports, crypto, geopolitics, ai, economy.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "the-zone-of-interest",
                                "s-doge",
                                "s-pengu",
                                "s-yzy",
                                "0x",
                                "10-4pt5-50",
                                "100thieves",
                                "15-seed",
                                "1H",
                                "2023-24-season",
                                "2024-ballot",
                                "2024-ca-senate-primary",
                                "2024-elections",
                                "2024-nomination",
                                "2024-republican-iowa-caucus",
                                "2024-republican-presidential-nomination",
                                "2024-republican-vp-nomination",
                                "2024-senate-primary",
                                "2024-us-presidential-election",
                                "2024-vp-nomination",
                                "2024-25-season",
                                "2026",
                                "2026-all-star",
                                "2026-dunk",
                                "2026-fifa-world-cup",
                                "2026-nba-draft",
                                "2026-nba-playoffs",
                                "270",
                                "2k",
                                "2nd-ammendment",
                                "3-point-contest",
                                "309",
                                "310",
                                "3jane",
                                "3pt",
                                "3rd-party",
                                "538",
                                "538-approval-rating",
                                "5M",
                                "6-more-weeks-of-winter",
                                "75th-emmys",
                                "aptjpt-brown",
                                "aac",
                                "aaron",
                                "aaron-rodgers",
                                "aave",
                                "bkaba",
                                "abbas",
                                "abnb",
                                "abraham-accords",
                                "ac-milan",
                                "academia",
                                "acc",
                                "account-deactivation",
                                "ace",
                                "ackman",
                                "acm",
                                "acn",
                                "acquisitions",
                                "acting",
                                "acu23",
                                "adam-22",
                                "adam-dangelo",
                                "adbe",
                                "adin-ross",
                                "adsk",
                                "advertising",
                                "advertising-revenue",
                                "aella",
                                "aeo",
                                "afc-championship",
                                "afc-north",
                                "afc-south",
                                "afghanistan",
                                "afghanistan-vs-west-indies-t20i",
                                "afhganistan",
                                "africa-cup-of-nations",
                                "ag",
                                "ahl",
                                "ai",
                                "ai-technology",
                                "aid",
                                "aid-package",
                                "air",
                                "air-force",
                                "airdrop",
                                "airplane",
                                "airport",
                                "ajax",
                                "akam",
                                "al",
                                "al-central",
                                "al-east",
                                "al-mvp",
                                "al-west",
                                "al-tanf",
                                "alabama",
                                "alabama-midterm",
                                "alabama-primary",
                                "alaska",
                                "alaska-primary",
                                "albania",
                                "alberta",
                                "album",
                                "album-of-the-year",
                                "album-release",
                                "albums",
                                "alex",
                                "alex-cooper",
                                "alex-jones",
                                "alex-ovechkin",
                                "alexander-isak",
                                "alexander-stubb",
                                "ali-khamenei",
                                "alibaba",
                                "alien",
                                "aligned-layer",
                                "alireza-firouzja",
                                "alix-earle",
                                "all",
                                "all-star-weekend",
                                "all-in",
                                "all-star",
                                "allah",
                                "alliance-90",
                                "allred",
                                "ally",
                                "alpha-arena",
                                "alsobrookls",
                                "altcoins",
                                "altman",
                                "alvin",
                                "aly-ngouille-ndiaye",
                                "amat",
                                "amazon",
                                "ambassador",
                                "amc",
                                "america-party",
                                "american-fiction",
                                "american-football-conference",
                                "american-league",
                                "american-samoa",
                                "ampl",
                                "amy-klobuchar",
                                "andalucia",
                                "andrew-mountbatten-windsor",
                                "andrew-scott",
                                "andrew-tate",
                                "andy-levin",
                                "angel-reese",
                                "animated-feature-film",
                                "animation",
                                "anime",
                                "anish-agnihotri",
                                "anne",
                                "announcements",
                                "ansem-1",
                                "ansem-vspt-barney",
                                "anthem",
                                "anthony-fauci",
                                "anthony-joshua",
                                "anthropic",
                                "antisemitism",
                                "antitrust",
                                "antoine-massey",
                                "ap-index",
                                "apology",
                                "app-store",
                                "appears",
                                "apple-music",
                                "appointments",
                                "approval",
                                "approval-rating",
                                "apr",
                                "aragonese",
                                "arc",
                                "arcc",
                                "arch",
                                "archeology",
                                "arcium",
                                "argentina",
                                "argentina-election",
                                "arg",
                                "argylle",
                                "ariana",
                                "arizona",
                                "arizona-coyotes",
                                "arizona-primary",
                                "arkansas",
                                "arkansas-primary",
                                "arlington-cemetery",
                                "armenia",
                                "arrest",
                                "arrested",
                                "arslanbek-makhmudov",
                                "art",
                                "artifical-intelligence",
                                "artificial-general-intelligence",
                                "artificial-intelligence",
                                "arvell-reese",
                                "arevalo",
                                "as",
                                "as-monaco",
                                "as-roma",
                                "asa-hutchinson",
                                "asan",
                                "asap-rocky",
                                "asg",
                                "asheville",
                                "ashley-stpt-clair",
                                "ashlyn-castro",
                                "ashton-jeanty",
                                "aso",
                                "assad",
                                "assist",
                                "assocaited-press",
                                "aster",
                                "aston-martin",
                                "astroid",
                                "astronomy",
                                "asylum",
                                "att",
                                "athletic-bilbao",
                                "athletic-club",
                                "atlanta",
                                "atlanta-falcons",
                                "ato",
                                "atomic",
                                "atp",
                                "atp-250",
                                "atp-bastad",
                                "atp-cincinnati",
                                "atp-finals",
                                "atp-gstaad",
                                "atp-toronto",
                                "atp-umag",
                                "atp-vienna-open",
                                "atp-washington",
                                "atp-washington-dptcpt",
                                "atp-winston-salem",
                                "attack",
                                "attackman",
                                "auburn",
                                "audemars-piguet",
                                "audemars-piguet-index",
                                "august-1",
                                "august-15",
                                "august-8",
                                "augusta",
                                "aus",
                                "austin",
                                "austin-metcalf",
                                "austin-theory",
                                "soccer-auc",
                                "austria",
                                "autism",
                                "autonomous-vehicles",
                                "avalanche",
                                "avgo",
                                "aviation",
                                "awards",
                                "aws",
                                "ayanna-pressley",
                                "ayatollah",
                                "azerbaijan",
                                "azo",
                                "baby",
                                "bac",
                                "bachelorette",
                                "backpack",
                                "bad-bunny",
                                "halftime-show",
                                "badbunny",
                                "baden-wurttemberg",
                                "badosa",
                                "bafta",
                                "bagram",
                                "bailey",
                                "balance",
                                "ballots",
                                "ballroom",
                                "baltimore",
                                "baltimore-ravens",
                                "bang",
                                "bangladesh",
                                "bank-failure",
                                "bank-of-canada",
                                "bank-of-japan",
                                "bank-of-utah-championship",
                                "bank-rate",
                                "banking-industry",
                                "bankrupt",
                                "bankruptcy",
                                "bans",
                                "barbara-lee",
                                "barcelona",
                                "barcelona-open",
                                "barghouti",
                                "barrasso",
                                "barron",
                                "barry-keoghan",
                                "barstool",
                                "baseaball",
                                "baseball",
                                "basektball",
                                "basetkball",
                                "basketball",
                                "bassirou-diomaye-faye",
                                "bat",
                                "battle",
                                "battle-of-the-sexes",
                                "bayern",
                                "bbby",
                                "bbw",
                                "bbwi",
                                "bc",
                                "bcra",
                                "bcsf",
                                "beach",
                                "beast",
                                "beeper-mini",
                                "beiber",
                                "beijing",
                                "beirut",
                                "belgian-gp",
                                "belgium",
                                "belmont-stakes",
                                "ben",
                                "ben-affleck",
                                "ben-armstrong",
                                "ben-carson",
                                "ben-gvir",
                                "ben-johnson",
                                "ben-shapiro",
                                "benfica",
                                "benin",
                                "berachain",
                                "berkley",
                                "bernie",
                                "bernie-sanders",
                                "besiktas",
                                "best-actor",
                                "best-adapted-screenplay",
                                "best-costume-design",
                                "best-director",
                                "best-month",
                                "best-new-artist",
                                "best-original-screenplay",
                                "best-picture",
                                "best-supporting-actor",
                                "best-supporting-actress",
                                "bet",
                                "beterbiev",
                                "betmoar",
                                "betts",
                                "bezos",
                                "bfc",
                                "bhutan-tri-series",
                                "biden",
                                "bidenomics",
                                "bieber",
                                "big-10",
                                "big-12",
                                "big-12-conference",
                                "big-beautiful-bill",
                                "big-content-guy",
                                "big-tech",
                                "big-ten-conference",
                                "big-west",
                                "biking",
                                "bill-ackman",
                                "bill-belichick",
                                "bill-gates",
                                "billboard",
                                "billboard-hot-100",
                                "billions",
                                "bills",
                                "binance",
                                "bingo",
                                "birb",
                                "bird",
                                "bitboy-crypto",
                                "bitcoin",
                                "bitcoin-conference",
                                "bitcoin-dominance",
                                "bitcoin-prices",
                                "bk",
                                "bkng",
                                "black",
                                "black-sea",
                                "blackout",
                                "blackpink",
                                "blanche",
                                "blast-fort-worth",
                                "blk",
                                "block-street",
                                "blockade",
                                "bloomberg",
                                "bls",
                                "blue-wall",
                                "blues",
                                "bluesky",
                                "bmbl",
                                "bmw-championship",
                                "board-changes",
                                "board-resignations",
                                "boasberg",
                                "bob-menery",
                                "bob-odenkirk",
                                "boca-raton-bowl",
                                "boden",
                                "boeing",
                                "boise-st",
                                "bok",
                                "bolivia-election",
                                "Bolivia-LFPB",
                                "bologna",
                                "bolojat",
                                "bolsonaro",
                                "bolton",
                                "bomb",
                                "bond",
                                "bondi",
                                "bonds",
                                "boobs",
                                "border-issues",
                                "border-patrol",
                                "boss-open",
                                "boston-bruins",
                                "boston-red-sox",
                                "box",
                                "box-office",
                                "boxingmma",
                                "bracketology",
                                "braga",
                                "brazil-serie-a",
                                "brazil-serie-b",
                                "breaking-news",
                                "breakup",
                                "brentford",
                                "brevis",
                                "brian-kelly",
                                "bribe",
                                "brics",
                                "bridge",
                                "brighton",
                                "britain",
                                "british-open",
                                "brock-lesnar",
                                "brock-purdy",
                                "broncos",
                                "brooks-koepka",
                                "brown",
                                "brown-university",
                                "bruno-mars",
                                "bryan-johnson",
                                "bryce-hall",
                                "bryson",
                                "bryson-dechambeau",
                                "btc",
                                "btc-price-prediction",
                                "btm",
                                "buccaneers",
                                "bucharest-mayor",
                                "buckets",
                                "bud",
                                "budget",
                                "bueklele",
                                "buenos-aires",
                                "buffalo-bills",
                                "buffalo-sabres",
                                "buffs",
                                "bukele",
                                "bulgaria",
                                "bulls",
                                "bundesliga-2",
                                "burl",
                                "bus",
                                "bush",
                                "business",
                                "business-growth",
                                "busse",
                                "bussiness",
                                "butker",
                                "butler",
                                "buybacks",
                                "bvb",
                                "bx",
                                "by-election",
                                "bybit",
                                "bybit-hack",
                                "byron-donalds",
                                "byu",
                                "bzfd",
                                "c",
                                "ca-30-primary",
                                "cabinet",
                                "caesars-entertainment",
                                "caf",
                                "cag",
                                "cagliari",
                                "caitlin-clark",
                                "caleb-downs",
                                "caleb-williams",
                                "california-governor",
                                "california-midterm",
                                "california-primary",
                                "california-senate-primary",
                                "call-of-duty",
                                "called",
                                "cam-ward",
                                "soccer-brcm",
                                "cancer",
                                "cannes",
                                "cantwell",
                                "cao",
                                "cape-of-good-hope",
                                "cape-town",
                                "capital-expenditures",
                                "capitals",
                                "carano",
                                "card",
                                "cardinals",
                                "career",
                                "caribbean-premier-league",
                                "carl-sherman",
                                "carlos-alcaraz",
                                "carlos-ulberg",
                                "carnell-tate",
                                "carolina-hurricanes",
                                "carp",
                                "cars",
                                "cartel",
                                "casey",
                                "castro",
                                "casy",
                                "cat",
                                "cat-lady",
                                "catherine-connoly",
                                "cathloicism",
                                "catholocism",
                                "caucus",
                                "caught",
                                "cavaliers",
                                "cboe",
                                "cboe-volatility-index",
                                "cbre",
                                "cbrl",
                                "cdc",
                                "celeb-coins",
                                "celebrities",
                                "celebrity",
                                "celebrity-all-star",
                                "celebrity-events",
                                "celebrity-game",
                                "celebrity-news",
                                "cellular-outage",
                                "celta-vigo",
                                "cenat",
                                "censure",
                                "central",
                                "ceos",
                                "cezanne",
                                "cfg",
                                "cfp",
                                "cfpb",
                                "cgbd",
                                "chad",
                                "chainlink",
                                "chair-of-the-federal-reserve",
                                "chamath",
                                "champions-chess-tour",
                                "champions-league",
                                "champions-league-basketball",
                                "champions-league-final",
                                "championship",
                                "change",
                                "charlestin",
                                "charli-xcx",
                                "charlie-kirk",
                                "charts",
                                "cheat",
                                "checo-perez",
                                "cheesur",
                                "chega",
                                "chelsea-clinton",
                                "chengdu",
                                "chess",
                                "chgg",
                                "chicago",
                                "chiefs",
                                "chiefs-vs-chargers",
                                "chile-primera",
                                "china",
                                "chinese-pneumonia-outbreak",
                                "chinese-super-league",
                                "chl",
                                "chongqing",
                                "chp",
                                "chris-christie",
                                "chris-waller",
                                "christmas",
                                "christmas-day",
                                "christopher-nolan",
                                "christopher-waller",
                                "churchill-downs",
                                "chym",
                                "cia",
                                "cincinnati-open",
                                "cinema",
                                "citi-dc-open",
                                "citi-open",
                                "city-council",
                                "cjng",
                                "cl",
                                "clap",
                                "claude",
                                "claudia-sheinbaum",
                                "claudine-gay",
                                "clean-sheet",
                                "clean-sheets",
                                "cleveland",
                                "cleveland-browns",
                                "clima",
                                "climate-science",
                                "climate-weather",
                                "climbing",
                                "clinton",
                                "clippers",
                                "close",
                                "cloudflare",
                                "clover",
                                "club-atletico-river-plate",
                                "cmc",
                                "cmg",
                                "coachella",
                                "coaching",
                                "coaching-changes",
                                "coalition",
                                "cobie",
                                "coco-jones",
                                "cod",
                                "cody-rhodes",
                                "coinbase",
                                "coke",
                                "colby-covington",
                                "collectibles",
                                "collective-bargaining",
                                "college",
                                "college-basketball",
                                "college-football",
                                "college-football-playoff",
                                "college-football-playoffs",
                                "colman-domingo",
                                "colombia-election",
                                "colombia-primera-a",
                                "colorado-midterm",
                                "colorado-state",
                                "columbia",
                                "combat",
                                "comedy",
                                "comex",
                                "comex-copper-futures",
                                "comex-gold-features",
                                "comex-silver-futures",
                                "commemorative",
                                "commodities",
                                "commodity",
                                "commodity-market",
                                "communism",
                                "compliance",
                                "concacaf",
                                "soccer-ccc",
                                "concaf",
                                "concession",
                                "confederate-memorial",
                                "conference-championship",
                                "conference-finals",
                                "conference-semifinals",
                                "conggress",
                                "congres",
                                "congress-expulsions",
                                "conmebol",
                                "connecticut-primary",
                                "conor-benn",
                                "conor-mcgregor",
                                "consensys",
                                "conservative",
                                "consitution",
                                "conspiracy",
                                "constitution",
                                "constitutional-convention",
                                "constructor",
                                "contempt",
                                "contempt-of-congress",
                                "contests",
                                "controversies",
                                "controversy",
                                "cooper-kupp",
                                "cop",
                                "copa-del-rey",
                                "soccer-brco",
                                "copa-liga-profesional",
                                "sud",
                                "itc",
                                "cornell",
                                "cornhuskers",
                                "cornyn",
                                "corporate-news",
                                "corporate-spy",
                                "cost",
                                "costume-design",
                                "coup",
                                "court",
                                "court-cases",
                                "courts",
                                "coventry-city",
                                "cowboys",
                                "cox",
                                "cpb",
                                "cracker-barrel",
                                "cramer",
                                "crcl",
                                "creator",
                                "cricket-australia",
                                "cricket-england",
                                "cricket-new-zealand",
                                "cricket-south-africa",
                                "cricket-test",
                                "cricket-uae",
                                "cricket-women-premier-league",
                                "crimea",
                                "crimson",
                                "cristiano-ronaldo",
                                "crm",
                                "croatia",
                                "crockett",
                                "crowdstrike",
                                "croydon",
                                "crsp",
                                "crude",
                                "crude-oil",
                                "crwd",
                                "crypto-gaming",
                                "crypto-policy",
                                "crypto-prices",
                                "crypto-the-game",
                                "cryptocurrency",
                                "crypto-new-hide",
                                "cryptothegame",
                                "cryptozoo",
                                "csgo",
                                "ctas",
                                "cuck",
                                "pop-culture",
                                "culutre",
                                "cuomo",
                                "currency",
                                "current-events",
                                "curtis",
                                "cuse",
                                "cvs",
                                "cvx",
                                "cwbb",
                                "cxm",
                                "cy-young",
                                "cyber",
                                "cybersecurity",
                                "cybertruck",
                                "cyclones",
                                "cyom",
                                "czechia",
                                "Czechia-Fortuna-Liga",
                                "czr",
                                "davine-joy-randolph",
                                "daily-strikes",
                                "dal",
                                "dallas",
                                "dallas-cowboys",
                                "dallas-mavericks",
                                "dallas-stars",
                                "damar",
                                "damar-hamlin",
                                "dan-eubanks",
                                "dan-lanning",
                                "dance",
                                "daniel-jones",
                                "daniel-penny",
                                "dao",
                                "darnold",
                                "darts",
                                "dasha",
                                "data-breach",
                                "databricks",
                                "dating",
                                "david",
                                "david-bailey",
                                "david-costello",
                                "david-freidberg",
                                "david-friedberg",
                                "david-hoffman",
                                "dawgs",
                                "day",
                                "daylight",
                                "daytona-500",
                                "dazn",
                                "dbi",
                                "ddog",
                                "deaaron-fox",
                                "deadpool-3",
                                "deals",
                                "dean-phillips",
                                "deb-fischer",
                                "debate",
                                "debates",
                                "debut",
                                "decibel",
                                "declare",
                                "declare-winner",
                                "declassification",
                                "declassify",
                                "deel",
                                "deepseek",
                                "defesne",
                                "defi-app",
                                "deficit",
                                "deft",
                                "degen",
                                "dehl",
                                "delaware-primary",
                                "delay",
                                "delcassification",
                                "delta",
                                "dem-nominee",
                                "democracy",
                                "democrat",
                                "democratic",
                                "democratic-alliance",
                                "democratic-party-of-korea",
                                "democratic-presidential-nomination",
                                "democratic-primary",
                                "democrats",
                                "demograohic",
                                "demographic",
                                "demographics",
                                "denmark",
                                "denver-broncos",
                                "department-of-defense",
                                "department-of-homeland-security",
                                "deportation",
                                "finance-rewards-20",
                                "finance-rewards-100",
                                "finance-rewards-300",
                                "rewards",
                                "rewards-50-4pt5-50",
                                "rewards-500-4pt5-50",
                                "derivatives",
                                "dermographic",
                                "desantis",
                                "despicable-me-4",
                                "destiny",
                                "detain",
                                "detroit-lions",
                                "detroit-pistons",
                                "dewine",
                                "dexter-lawrence",
                                "dfb-pokal",
                                "dg",
                                "dhs",
                                "dicks",
                                "diddy",
                                "didy",
                                "digital-art",
                                "digital-trends",
                                "dillon-gabriel",
                                "ding",
                                "diplomatic-meeting",
                                "dis",
                                "disaster",
                                "disease",
                                "division",
                                "dji",
                                "djokovic",
                                "djt-1",
                                "dkng",
                                "dks",
                                "dltr",
                                "dmr",
                                "dnc",
                                "docu",
                                "documents",
                                "dod",
                                "dodgers",
                                "doge",
                                "dogecoin",
                                "dogs",
                                "doj",
                                "domer",
                                "dont-die",
                                "donald-trump",
                                "donald-trump-jrpt",
                                "donestk",
                                "donetsk",
                                "doomsday-clock",
                                "dota-2",
                                "doubles",
                                "doug-burgum",
                                "doug-ford",
                                "doug-polk",
                                "dp",
                                "dp-world-india-championship-2025",
                                "dp-world-tour",
                                "dpk",
                                "dpoy",
                                "dpp",
                                "draft",
                                "drama",
                                "draymond",
                                "drift",
                                "drill-baby-drill",
                                "drone-attack",
                                "drug-lord",
                                "drug-policy",
                                "drugs",
                                "druze",
                                "du-plessis",
                                "dua-lipa",
                                "dubai",
                                "ducks",
                                "duke",
                                "dumb-money",
                                "dune-2",
                                "dune-part-two",
                                "dunesday",
                                "dunk-contest",
                                "dutch-general-election",
                                "dvalishvili",
                                "dwarf-planet",
                                "eagle",
                                "eagles",
                                "earn-4",
                                "earnings-calls",
                                "earthquake",
                                "easter",
                                "easy",
                                "eb",
                                "ecb",
                                "ecf-mvp",
                                "economic-forecasting",
                                "economic-policy",
                                "economy",
                                "economy1",
                                "edgex",
                                "efl-cup",
                                "egg",
                                "egypt",
                                "egypt-premier-league",
                                "eintracht",
                                "el-mencho",
                                "el-paso",
                                "electio-night",
                                "election",
                                "election-2024",
                                "election-forecastingpt",
                                "election-night",
                                "election-parlays",
                                "election-results",
                                "elections-2024",
                                "elector",
                                "electoral-college",
                                "electoral-fraud",
                                "electoral-votes-tags-politics",
                                "electricity",
                                "electronics",
                                "elemental",
                                "eli-lilly",
                                "elite-eight",
                                "elizabeth-warren",
                                "elon-vspt-open-ai",
                                "elordi",
                                "embargo",
                                "emmanuel",
                                "emmett-shear",
                                "emmys",
                                "employment",
                                "encrypt",
                                "end-of-year",
                                "energy-industry",
                                "energy-market",
                                "english",
                                "entertainment",
                                "entrepreneurship",
                                "environemntal-protection",
                                "enzo-maresca",
                                "EPL",
                                "equities",
                                "equity-daily-pyth",
                                "equity-hit",
                                "erupt",
                                "eruption",
                                "esl",
                                "espn",
                                "etf",
                                "etf-approval",
                                "etfs",
                                "ethdenver",
                                "ethena",
                                "ether-rock",
                                "ethereal",
                                "ethereum",
                                "ethereum-dencun",
                                "ethereum-prices",
                                "etherfi",
                                "ethgas",
                                "ethics",
                                "ethiopia",
                                "etor",
                                "etsy",
                                "eu",
                                "euro",
                                "euro-2024",
                                "eurobasket",
                                "euroleague",
                                "euroleague-basketball",
                                "europa-league",
                                "europe",
                                "european",
                                "european-central-bank",
                                "soccer-euc",
                                "european-open",
                                "Euro-Union",
                                "european-union",
                                "euros",
                                "eurozone",
                                "event",
                                "event-cancellations",
                                "events",
                                "everest",
                                "everton",
                                "evloev",
                                "ewcz",
                                "ewy",
                                "ex-risk",
                                "exchange-rate",
                                "exchanges",
                                "executive-order",
                                "executive-orders",
                                "exit",
                                "expel",
                                "exploit",
                                "exploits",
                                "exploration",
                                "extend",
                                "extended",
                                "extradite",
                                "extradition",
                                "f",
                                "f1",
                                "f1-azerbaijan-grand-prix",
                                "f1-singapore-grand-prix",
                                "f2",
                                "faa",
                                "fabiano",
                                "fabric",
                                "facebook",
                                "faculty",
                                "fair-bet-act",
                                "falcons",
                                "falkland-islands",
                                "fani-willis",
                                "fannie-mae",
                                "fantasy-football",
                                "farm",
                                "fashion",
                                "favorite",
                                "fc",
                                "fc-porto",
                                "fcsb",
                                "fda",
                                "fdic",
                                "fdv-flipping",
                                "fdx",
                                "featured",
                                "february",
                                "february-job-report",
                                "fed",
                                "fed-chair",
                                "federal",
                                "federal-government",
                                "federal-reserve",
                                "federer",
                                "fedex-stpt-jude-championship",
                                "fees",
                                "felix",
                                "female",
                                "femy",
                                "fenerbahce",
                                "fertility",
                                "fertitta",
                                "fetterman",
                                "feyenoord",
                                "bkfibaqaf",
                                "bkfibaqam",
                                "bkfibaqas",
                                "bkfibaqeu",
                                "fide",
                                "fide-candidates",
                                "fide-grand-swiss",
                                "fidesz",
                                "field-goal",
                                "fifa-club-world-cup",
                                "soccer-fifaw",
                                "fifa-world-cup-qualifiers",
                                "fight",
                                "fight-on",
                                "fights",
                                "figure",
                                "film",
                                "films",
                                "final-4",
                                "finals-mvp",
                                "finance",
                                "financial-predictions",
                                "finland",
                                "finn-balor",
                                "finnish-politics",
                                "fire",
                                "fired",
                                "first-100-days",
                                "first-half",
                                "first-quarter",
                                "first-round",
                                "fis",
                                "fito",
                                "five",
                                "fivethiryeight",
                                "fl",
                                "flag-football-classic",
                                "flee",
                                "flight",
                                "flip-off",
                                "flood",
                                "florentino-perez",
                                "florida-panthers",
                                "florida-primary",
                                "florida-state",
                                "floyd",
                                "flu",
                                "fluent",
                                "flut",
                                "flyers",
                                "flying-tulip",
                                "fnf",
                                "fomc",
                                "food",
                                "food-and-drug-administration",
                                "footbal",
                                "forecasting",
                                "foreign-affairs",
                                "foreign-policy",
                                "forex",
                                "formula1",
                                "formula-one",
                                "fortune-100",
                                "fourth",
                                "fourth-quarter",
                                "fox-sports",
                                "foxa",
                                "france",
                                "francis",
                                "francis-mauigoa",
                                "frank-lampard",
                                "frank-larose",
                                "frankfurt",
                                "frankie",
                                "fraud",
                                "fred-again",
                                "freddie-mac",
                                "freedom-flotilla",
                                "freedom-watch",
                                "french",
                                "french-cup",
                                "french-elections",
                                "french-mayoral-elections",
                                "friendpttech",
                                "frogs",
                                "frozen-empire",
                                "fsk",
                                "ftc",
                                "ftc-commissioner",
                                "ftdr",
                                "ftse",
                                "ftx",
                                "fuentes",
                                "fulham",
                                "funding",
                                "funding-bill",
                                "fundraising",
                                "furiosa",
                                "fuse-energy",
                                "future-events",
                                "future-releases",
                                "future-value",
                                "gabriel-haines",
                                "gala",
                                "galatasaray",
                                "gallego",
                                "gamb",
                                "gambling",
                                "game-13",
                                "game-14",
                                "game-7",
                                "game-8",
                                "game-specials",
                                "gamecocks",
                                "gamestop",
                                "gaming",
                                "gaming-competition",
                                "ganja",
                                "gantz",
                                "garden-cup",
                                "garvey",
                                "gator-bowl",
                                "gatorade",
                                "gatorade-shower",
                                "gavin-newsom",
                                "gay",
                                "gaza",
                                "gbpusd",
                                "gd",
                                "gdp",
                                "gemeenteraad",
                                "gemeenteraad-van-amsterdam",
                                "gemini",
                                "gemini-3",
                                "gemini-ultra",
                                "gender-issues",
                                "general-election",
                                "general-tariff",
                                "generative",
                                "genesis-invitational",
                                "genius",
                                "genocide",
                                "gensyn",
                                "geography",
                                "george-pickens",
                                "george-santos",
                                "georgia",
                                "georgia-primary",
                                "german-politics",
                                "germany",
                                "bkbbl",
                                "gety",
                                "ghannon-burton",
                                "ghislaine-maxwell",
                                "ghostbusters",
                                "ghostbusters-frozen-empire",
                                "giannis",
                                "giannis-antetokounmpo",
                                "giants",
                                "gillibrand",
                                "giro-ditalia",
                                "gis",
                                "giveaways",
                                "giza",
                                "glenn-youngkin",
                                "global",
                                "global-gdp",
                                "global-health",
                                "global-logistics",
                                "global-politics",
                                "global-temp",
                                "global-warming",
                                "glp",
                                "gmail",
                                "goal",
                                "goal-contributions",
                                "goalie",
                                "goalkeeper",
                                "goals",
                                "gold",
                                "golden-boot",
                                "golden-globes",
                                "golden-knights",
                                "golden-state-warriors",
                                "google",
                                "google-search",
                                "gop",
                                "gophers",
                                "gorton-and-denton",
                                "governance",
                                "government",
                                "governor-midterms",
                                "governor-primary",
                                "governor",
                                "gpro",
                                "gpt",
                                "gpt-4",
                                "gpt-4pt5",
                                "gpt-5",
                                "grab",
                                "grammys",
                                "grand-chess-tour",
                                "grand-theft-auto",
                                "grande",
                                "greece",
                                "bkgr1",
                                "soccer-grc",
                                "green",
                                "green-bay",
                                "green-bay-packers",
                                "green-room",
                                "greenland",
                                "greta",
                                "greta-thunberg",
                                "gretchen-whitmer",
                                "grok",
                                "groundhog",
                                "groundhog-day",
                                "growth",
                                "groyper",
                                "grpo",
                                "gruden",
                                "grunen",
                                "gs",
                                "gt",
                                "gubernatorial",
                                "gubernatorial-election",
                                "gubernatorial-race",
                                "gukesh-dommaraju",
                                "gulf",
                                "gustavo-petro",
                                "guyana",
                                "gavle-goat",
                                "h5n1",
                                "hacker",
                                "hacking",
                                "haiti",
                                "hal",
                                "half-time",
                                "halftime",
                                "haliburton",
                                "haliey",
                                "hamilton",
                                "handball",
                                "haney",
                                "haniyeh",
                                "hank-aaron",
                                "hansen",
                                "hantavirus",
                                "harambe",
                                "harry",
                                "harvard",
                                "has",
                                "hawaii",
                                "hawaii-midterm",
                                "hawaii-primary",
                                "hawk-tuah",
                                "hawkeyes",
                                "hd",
                                "head-of-state",
                                "health",
                                "healthcare",
                                "hearing",
                                "heat-increase",
                                "hegseth",
                                "heisman",
                                "heisman-trophy",
                                "henry-mcmaster",
                                "hesm",
                                "hezbollah",
                                "hgv",
                                "hhh",
                                "hhs",
                                "hibachi",
                                "hide-from-new",
                                "highs",
                                "hikaru-nakamura",
                                "hillary",
                                "hillary-clinton",
                                "hinge",
                                "hip-4",
                                "hip3",
                                "hiring",
                                "hirono",
                                "hispanic",
                                "history",
                                "hit-piece",
                                "hit-price",
                                "hit-yearly",
                                "hitler",
                                "hku5-cov-2",
                                "hlt",
                                "hochul",
                                "hoddy-toddy",
                                "hog",
                                "hogan",
                                "hole-in-one",
                                "holloway",
                                "hollywood",
                                "home-run",
                                "home-run-derby",
                                "home-runs",
                                "homeland-security",
                                "honduras",
                                "hong-kong",
                                "hong-kong-t20-premier-league-women",
                                "honor-of-kings",
                                "hood",
                                "hooisers",
                                "horse-racing",
                                "hospitals",
                                "hostage-crisis",
                                "hostage-deal",
                                "hot-100",
                                "hot-dog-eating-contest",
                                "hotdog",
                                "hotspur",
                                "hotstuff",
                                "house-elections",
                                "house-of-representatives",
                                "house-races",
                                "housing",
                                "houston",
                                "houston-rockets",
                                "houston-texans",
                                "houthi",
                                "houthis",
                                "houtis",
                                "hovde",
                                "hoyt",
                                "hpe",
                                "hpq",
                                "hsbc-championships",
                                "hsi",
                                "htz",
                                "hubs",
                                "huddle",
                                "hulk-hogan",
                                "human-implant",
                                "human-trafficking",
                                "humanitarian-pause",
                                "hungarian",
                                "hungary-election",
                                "hunger-games-boss",
                                "hunter-biden",
                                "huobi",
                                "hurricane",
                                "hurricanes",
                                "hurts",
                                "hush-money",
                                "hustler-casino-live",
                                "hylo",
                                "hype",
                                "im-just-ken",
                                "ian-miles-cheong",
                                "ian-nepomnichtchi",
                                "iart",
                                "iberia",
                                "ibge",
                                "ibkr",
                                "icahn",
                                "icc",
                                "icc-1",
                                "icc-world-test-championship",
                                "ice",
                                "ice-hockey",
                                "ice-spice",
                                "iceaman",
                                "iceland",
                                "iceman",
                                "icui",
                                "idaho",
                                "idaho-caucus",
                                "idaho-midterm",
                                "idaho-primary",
                                "identity",
                                "identity-verification",
                                "idos",
                                "ieepa",
                                "iem-cologne",
                                "iem-rio",
                                "iem-rio-2026",
                                "iep",
                                "if-elfsborg",
                                "iggy",
                                "igor-matovic",
                                "ihrt",
                                "ila",
                                "illinois",
                                "illinois-primaries",
                                "illinois-primary",
                                "immunefi",
                                "impeach",
                                "imran-khan",
                                "in-vitro",
                                "trump-inauguration",
                                "inauguration",
                                "income-predictions",
                                "independence",
                                "india",
                                "india-pakistan",
                                "indian-election",
                                "indian-elections",
                                "indian-premier-league",
                                "indian-super-league",
                                "indiana",
                                "indiana-midterm",
                                "indiana-primary",
                                "indianapolis-500",
                                "indianapolis-colts",
                                "indicies",
                                "indonesia",
                                "infinex",
                                "influenza",
                                "infrared",
                                "infrastructure",
                                "infy",
                                "initial-jobless-claims",
                                "insolvency",
                                "intc",
                                "integrity",
                                "intel",
                                "intelligence",
                                "inter-milan",
                                "interest",
                                "interest-rates",
                                "international",
                                "international-affairs",
                                "international-aid",
                                "international-competitions",
                                "international-development",
                                "international-law",
                                "international-league-t20",
                                "international-politics",
                                "international-relations",
                                "international-travel",
                                "internet-traffic",
                                "intervention",
                                "interview",
                                "interviews",
                                "intial-jobless-claims",
                                "intlpt-soccer",
                                "intu",
                                "invade",
                                "invasion",
                                "investec-champions-cup",
                                "investing",
                                "investment",
                                "investments",
                                "invitational",
                                "ionq",
                                "iot",
                                "iowa",
                                "iowa-caucus",
                                "iowa-primary",
                                "iowa-state",
                                "ipca",
                                "ipl",
                                "ipo",
                                "ipos",
                                "ipswich-town",
                                "iran",
                                "diplomacy-ceasefire",
                                "iran-offensive-actions",
                                "iranian-leadership-regime",
                                "iraq",
                                "ireland",
                                "irish",
                                "island",
                                "israel",
                                "israel-strike-iran",
                                "issaac-guerendo",
                                "istanbul",
                                "it-never-went-away",
                                "italian",
                                "itf",
                                "ivan-korcok",
                                "ivy-league",
                                "ivy-league-antisemitism",
                                "ivz",
                                "j-lo",
                                "jacksonville-jaguars",
                                "jadarian-price",
                                "jalen-milroe",
                                "jalisco",
                                "jalisco-cartel",
                                "jalisco-new-generation-cartel",
                                "jamaica",
                                "janelle-monae",
                                "january-6",
                                "japan",
                                "bkjpn",
                                "japan-j-league",
                                "jason-tatum",
                                "jay-jones",
                                "jayden-daniels",
                                "jayhawks",
                                "jayson-tatum",
                                "jazz",
                                "jd",
                                "jeanty",
                                "jef",
                                "jeff-nadu",
                                "jeffrey",
                                "jeffrey-wright",
                                "jelly-roll",
                                "jeremiyah-love",
                                "jerry-after-dark",
                                "jesse-pollak",
                                "jewels",
                                "jews",
                                "jfk",
                                "jill",
                                "jill-biden",
                                "jill-stein",
                                "jim",
                                "jim-cramer",
                                "jimmy",
                                "jinan",
                                "jizz",
                                "jmu",
                                "jnj",
                                "joaquin-buckley",
                                "jobs",
                                "jockey-club-gold-cup",
                                "jodie-foster",
                                "joe-biden",
                                "joe-burrow",
                                "joe-pyfer",
                                "john-fetterman",
                                "john-mcafee",
                                "johnson",
                                "joker-2",
                                "jokic",
                                "jon-batiste",
                                "jon-rahm",
                                "jordan",
                                "jordan-spieth",
                                "jordyn-tyson",
                                "josh-allen",
                                "josh-emmett",
                                "josh-giddey",
                                "josh-stein",
                                "joy-taylor",
                                "jpafootball",
                                "jpm",
                                "jpm-sex-scandal",
                                "jpow",
                                "jre",
                                "jto",
                                "juan-soto",
                                "judge",
                                "judy-shelton",
                                "julani",
                                "julianna-stratton",
                                "weekly-tuesday",
                                "july-4",
                                "jungleman",
                                "jury-duty",
                                "justice",
                                "justin",
                                "justin-bieber",
                                "justin-fields",
                                "justin-herbert",
                                "justine-triet",
                                "juventus",
                                "kabul",
                                "kaine",
                                "kamala",
                                "kamala-endorsements",
                                "kamala-harris",
                                "kamara",
                                "kamino",
                                "kansas",
                                "kansas-primary",
                                "kansas-state",
                                "kanye",
                                "kanye-west",
                                "karate",
                                "karate-combat",
                                "kari-lake",
                                "karmelo-anthony",
                                "kash-patel",
                                "katana",
                                "kate-middleton",
                                "katie-britt",
                                "katie-porter",
                                "kayne",
                                "kbl",
                                "kc",
                                "kc-concepcion",
                                "keir",
                                "keith-gill",
                                "kelce",
                                "kelp",
                                "kemi-badenoch",
                                "kendall",
                                "kennedy",
                                "kentucky",
                                "kentucky-midterm",
                                "kenyon-sadiq",
                                "kerch",
                                "kevin-mccarthy",
                                "kevin-warsh",
                                "key",
                                "keys",
                                "kfy",
                                "khafare",
                                "khafre",
                                "khalifa-sall",
                                "khamenei",
                                "khamzat-chimaev",
                                "khanna",
                                "khc",
                                "khl",
                                "kick",
                                "killers-of-the-flower-moon",
                                "kimbo-slice-jrpt",
                                "kimi",
                                "kimmel",
                                "kinetiq",
                                "soccer-skc",
                                "king-of-bahrain",
                                "kippah",
                                "klobuchar",
                                "kmx",
                                "knicks",
                                "knights",
                                "knockdown",
                                "knockouts",
                                "soccer-nlc",
                                "korea",
                                "korean-teams",
                                "kouzounas",
                                "kpi",
                                "kpis",
                                "kpop",
                                "kraken",
                                "krg",
                                "krishnamoorthi",
                                "kristen-foxen",
                                "kristi-noem",
                                "ksa",
                                "kss",
                                "kuala-lampur",
                                "kunce",
                                "kurdish",
                                "kurdistan",
                                "kurdistan-regional-government",
                                "kurds",
                                "kursk",
                                "kwon",
                                "kyle-davies",
                                "kyren-lacy",
                                "kyrie-irving",
                                "la",
                                "lab-leak",
                                "labor-market",
                                "labor-statistics",
                                "lacrosse",
                                "ladder-match",
                                "lagos",
                                "lai-ching-te",
                                "lake",
                                "lakers",
                                "lalit-modi",
                                "lamine-yamal",
                                "lana-del-rey",
                                "lance-stroll",
                                "landing",
                                "lanka-premier-league",
                                "laphonza-butler",
                                "larry-ellison",
                                "larry-sukernik",
                                "las-vegas",
                                "las-vegas-raiders",
                                "launch",
                                "launch-events",
                                "launches",
                                "law",
                                "law-enforcement",
                                "lawsuit",
                                "lawsuits",
                                "layerzero",
                                "layoff",
                                "lazio",
                                "leabnon",
                                "leadership",
                                "league-of-legends",
                                "soccer-el1",
                                "soccer-el2",
                                "leavitt",
                                "lebanon",
                                "lebron",
                                "lec",
                                "ledger",
                                "leeds-united",
                                "legal",
                                "legal-cases",
                                "legal-documents",
                                "legal-issues",
                                "legal-proceedings",
                                "legal-settlement",
                                "leganes",
                                "leicester-city",
                                "lenatheplug",
                                "leo",
                                "lexus-eastbourne-open",
                                "leyton-orient",
                                "lgbtq",
                                "lgbtq-issues",
                                "lgbtq-rights",
                                "lh",
                                "liam-gallagher",
                                "liberals",
                                "liberation-day-tariffs",
                                "liberty",
                                "mex",
                                "soccer-gtm",
                                "liga-portugal",
                                "soccer-fpd",
                                "lighter",
                                "lightning",
                                "liliy-phillips",
                                "lille",
                                "lily-phillips",
                                "linda-yaccarino",
                                "linea",
                                "linguistics",
                                "lions",
                                "liquefied",
                                "liquid",
                                "list",
                                "litopteth",
                                "little-league",
                                "liv-golf",
                                "livestream",
                                "llm",
                                "llws",
                                "lnb",
                                "lng",
                                "lockdown",
                                "lodon",
                                "logan-paul",
                                "lol-worlds",
                                "london",
                                "lonzo-ball",
                                "loopscale",
                                "lorna-hajdini",
                                "los-angeles",
                                "los-angeles-lakers",
                                "losc",
                                "louisiana-primary",
                                "love",
                                "low",
                                "lsd",
                                "lsu",
                                "ltc",
                                "lucas-kunce",
                                "lucknow",
                                "ludogorets",
                                "luigi-mangione",
                                "luis-parada",
                                "lukashenko",
                                "lulu",
                                "lutnick",
                                "luxury-goods",
                                "lyft",
                                "lzb",
                                "m",
                                "ma",
                                "M-A",
                                "maccabi-tlv",
                                "machine",
                                "macro",
                                "macro-election-2",
                                "macro-graph",
                                "macro-indicators",
                                "macro-inflation",
                                "macro-jobs",
                                "macro-single",
                                "macro-unemployment",
                                "mad-max-saga",
                                "madison-sheahan",
                                "madrid",
                                "maduro",
                                "maersk",
                                "mag-7",
                                "mag7",
                                "maga",
                                "magazine",
                                "magic",
                                "magnus",
                                "magnus-carlsen",
                                "magny",
                                "mahammed-dionne",
                                "mahomes",
                                "mail-in",
                                "main-election",
                                "main-elections",
                                "maine",
                                "maine-primary",
                                "major",
                                "major-championships",
                                "major-league-cricket",
                                "makai-lemon",
                                "make-up",
                                "makina",
                                "male",
                                "mallorca",
                                "mallorca-championships",
                                "malmo",
                                "malmo-ff",
                                "malott",
                                "mamdani",
                                "mammoth",
                                "man-of-the-match",
                                "man-united",
                                "man-utd",
                                "manager",
                                "manchester-city",
                                "manchester-united",
                                "manchin",
                                "mangione",
                                "manila",
                                "manuel-flores",
                                "map",
                                "mara",
                                "maratime",
                                "march-3-primaries",
                                "march-meeting",
                                "marco",
                                "marco-rubio",
                                "marcos",
                                "marcus",
                                "marcus-robinson",
                                "margin-of-victory",
                                "maria-machado",
                                "marianne-williamson",
                                "mariano",
                                "marijuana",
                                "maritime-transport",
                                "mark-carney",
                                "mark-gonzalez",
                                "mark-ruffalo",
                                "market-capitalization",
                                "market-launch",
                                "market-prediction",
                                "market-predictions",
                                "market-rankings",
                                "market-trends",
                                "markets",
                                "markt-cap",
                                "markwayne-mullin",
                                "marriage",
                                "maru",
                                "marvin-harrison-jrpt",
                                "maryland",
                                "maryland-midterm",
                                "maryland-primary",
                                "mascot",
                                "masculitnity",
                                "mass-deportation",
                                "massachusetts",
                                "massachusetts-midterm",
                                "massachusetts-primary",
                                "massachussetts",
                                "massachussetts-primary",
                                "massie",
                                "masters",
                                "matchroomboxing",
                                "math",
                                "mathematics",
                                "matisse",
                                "matt-dolan",
                                "matt-gaetz",
                                "matt-parker",
                                "matthew-livelsberger",
                                "matty-betss",
                                "mau",
                                "mavericks",
                                "mavs",
                                "may-december",
                                "mayc",
                                "mayor",
                                "mayoral-elections",
                                "mayweather",
                                "mbwm",
                                "mcap",
                                "mccormick",
                                "mccray",
                                "mcdermott",
                                "mcdonalds",
                                "mcgregor",
                                "mdb",
                                "me-1",
                                "me1",
                                "me2",
                                "mecklenburg-vorpommern",
                                "meek-mill",
                                "melania",
                                "melissa-hortman",
                                "meloni",
                                "meltem-demirors",
                                "memecoins",
                                "memes",
                                "memorial-tournament",
                                "merab-dvalishvili",
                                "merge",
                                "merger",
                                "mergers-and-acquisitions",
                                "meri-gomez",
                                "merz",
                                "meta-vs-ftc",
                                "metadao",
                                "metals",
                                "metaverse",
                                "mets",
                                "mexico-election",
                                "mezo",
                                "mgiuelpf",
                                "mgm",
                                "miami-oh",
                                "miami-open",
                                "micahel-saylor",
                                "michael-vick",
                                "michelle-obama",
                                "michigain",
                                "michigan-state",
                                "michigan-wolverines",
                                "microstrategy",
                                "middle-east",
                                "midnights",
                                "midtjylland",
                                "migrant-families",
                                "miguel-diaz-canel",
                                "mika-aaltola",
                                "mike-breen",
                                "mike-evans",
                                "mike-johnson",
                                "mike-lee",
                                "mike-pence",
                                "mike-perry",
                                "mike-pompeo",
                                "mike-rogers",
                                "mike-tomlin",
                                "mike-tyson",
                                "milady",
                                "milan",
                                "milei",
                                "military",
                                "military-invasion",
                                "military-strikes",
                                "miller-moss",
                                "miller-time",
                                "million-dollar-game",
                                "millwall",
                                "milton",
                                "milwaukee-bucks",
                                "minh",
                                "minneapolis",
                                "minneosta",
                                "minnesota",
                                "minnesota-midterm",
                                "minnesota-twins",
                                "minnesota-vikings",
                                "minnesota-wild",
                                "missile",
                                "mississippi-primary",
                                "missouri",
                                "missouri-caucus",
                                "missouri-midterm",
                                "mitch-mcconnell",
                                "mixed-martial-arts",
                                "mktx",
                                "mlb",
                                "mlb-all-star-game",
                                "mlb-asg",
                                "mlb-draft",
                                "mlb-playoffs",
                                "mmerch",
                                "mmm",
                                "mn",
                                "mnf",
                                "mnst",
                                "mo-salah",
                                "model",
                                "moderator",
                                "mog",
                                "mogpta",
                                "mojtaba",
                                "mold",
                                "moldova",
                                "moldova-election",
                                "monday",
                                "monero",
                                "monetary-policy",
                                "monsanto-vspt-durnell",
                                "montenegro",
                                "monthly-awards",
                                "moon-landing",
                                "moonshot",
                                "more-light",
                                "moreno",
                                "morgan",
                                "Morocco-Botola-Pro",
                                "mortgage",
                                "moscow",
                                "mossad",
                                "most-valuable-player",
                                "motm",
                                "motogp",
                                "motorcycle",
                                "motorsports",
                                "mountain-west",
                                "movie-gross",
                                "movies",
                                "mozambique",
                                "mr-beast",
                                "mrpt-beast",
                                "mrbeast",
                                "mrk",
                                "mrx",
                                "ms",
                                "msci",
                                "mstr",
                                "mtpt-etna",
                                "mtpt-vesuvius",
                                "mtg",
                                "mtn",
                                "mu",
                                "mucarsel-powell",
                                "mug-shot",
                                "mullin",
                                "mungo",
                                "municipal-council",
                                "murati",
                                "museum",
                                "mushrooms",
                                "music",
                                "music-industry",
                                "musk",
                                "mustangs",
                                "mx",
                                "mykhailo-mudryk",
                                "myles-garrett",
                                "naitons-league",
                                "nancy-pelosi",
                                "nasa",
                                "nate",
                                "nate-silve",
                                "nathans-famous-hot-dog",
                                "nathans-hot-dog-contest",
                                "super-bowl-lix-pregame",
                                "national-bureau-of-economic-research",
                                "national-football-conference",
                                "national-league",
                                "national-public-radio",
                                "nato",
                                "natural-disaster",
                                "natural-gas",
                                "naval",
                                "navy",
                                "nawaz-sharif",
                                "nayib-bukele",
                                "nazi",
                                "nba",
                                "nba-all-star-weekend",
                                "nba-champion",
                                "nba-draft",
                                "nba-finals",
                                "nba-gambling-scandal",
                                "nba-playoffs",
                                "nbl",
                                "nc",
                                "ncaa-basketball",
                                "ncaa-cbb",
                                "ncaa-tournament",
                                "ncaaw",
                                "ne-1",
                                "ne1",
                                "nebraska",
                                "nebraska-midterm",
                                "nebraska-primary",
                                "nebula3",
                                "neh",
                                "nelk",
                                "nelk-boys",
                                "nepal-election",
                                "nest",
                                "net",
                                "netanyahu",
                                "netherlands",
                                "nets",
                                "neuralink",
                                "neutrl",
                                "nevada-midterm",
                                "new-artists",
                                "new-england-patriots",
                                "new-hampshire",
                                "new-hampshire-primary",
                                "new-jersey",
                                "new-jersey-midterm",
                                "new-mexico",
                                "new-mexico-midterm",
                                "new-mexico-primary",
                                "new-orleans-escapees",
                                "next-pope",
                                "new-york",
                                "new-york-city",
                                "new-york-islanders",
                                "new-york-knicks",
                                "new-york-midterm",
                                "new-york-primary",
                                "new-zealand",
                                "new-zealand-election",
                                "newcastle",
                                "news",
                                "news-stories",
                                "news-story",
                                "nfc",
                                "nfc-east",
                                "nfc-north",
                                "nfc-south",
                                "nfc-west",
                                "nfl",
                                "nfl-draft",
                                "nfl-preseason-2025",
                                "nfl-week-2",
                                "nfl-week-6",
                                "nfl-week-7",
                                "nflra",
                                "nflx",
                                "nfri",
                                "nft",
                                "nhl",
                                "nice",
                                "nico-harrison",
                                "nicolas-cage",
                                "nigeria",
                                "nik",
                                "nik-airball",
                                "soccer-svk1",
                                "nil",
                                "nj",
                                "nj-governor",
                                "nke",
                                "nl",
                                "nl-central",
                                "nl-east",
                                "nl-mvp",
                                "nl-west",
                                "nlcs",
                                "nlds",
                                "nmax",
                                "no-hitters",
                                "no-no",
                                "noah-kahan",
                                "nobel",
                                "nobel-peace-prize",
                                "noble",
                                "noel-gallagher",
                                "nominate",
                                "nonfarm",
                                "nordea-open",
                                "norris",
                                "north-atlantic-treaty",
                                "north-carolina-midterm",
                                "north-carolina-primary",
                                "north-dakota-midterm",
                                "north-dakota-primary",
                                "north-end",
                                "north-korea",
                                "north-texas",
                                "norway-eliteserien",
                                "not-laliga",
                                "notre-dame",
                                "nov-4-elections",
                                "november",
                                "nr",
                                "nra",
                                "nrfi",
                                "nuclear",
                                "nuclear-non-proliferation-treaty",
                                "nuclear-technology",
                                "nuclear-weapons",
                                "nuggets",
                                "nuke",
                                "nuzzi",
                                "nvda",
                                "nvts",
                                "nwsa",
                                "soccer-nwsl",
                                "nxpi",
                                "ny-special-election",
                                "nyc",
                                "nyc-mayor",
                                "nye",
                                "nym",
                                "nyt",
                                "odonnell",
                                "omalley",
                                "o1",
                                "oakland",
                                "oba-femi",
                                "obama",
                                "obj",
                                "october-suprise",
                                "octra",
                                "odysseus-lander",
                                "og-anunoby",
                                "og-shoots",
                                "ohio-midterm",
                                "ohio-primaries",
                                "ohio-primary",
                                "ohtani",
                                "oil",
                                "oil-industry",
                                "oil-ship",
                                "oilers",
                                "oklahoma-primary",
                                "oklo",
                                "okta",
                                "ole-miss",
                                "oleksandr-usyk",
                                "olivia",
                                "olivia-holzmacher",
                                "olympic-athletics",
                                "olympic-basketball",
                                "winter-games",
                                "olympics-athletics",
                                "olympics-track",
                                "omar-cooper-jrpt",
                                "omar-marmoush",
                                "omega-european-masters",
                                "one-direction",
                                "onefootball",
                                "online-interaction",
                                "onlyfans",
                                "ontario",
                                "open-network",
                                "openai",
                                "openai-vs-elon",
                                "opinion",
                                "oppenheimer",
                                "oracle",
                                "orban",
                                "orcl",
                                "oregon",
                                "oregon-midterm",
                                "oregon-st",
                                "orthodox",
                                "os",
                                "osborne",
                                "oscars",
                                "ostium",
                                "osu",
                                "otly",
                                "oust",
                                "out",
                                "outage",
                                "outages",
                                "outer-space",
                                "over",
                                "overunder",
                                "overnight",
                                "overs",
                                "owlto",
                                "ownership",
                                "oxy",
                                "pa",
                                "paavo-vayrynen",
                                "pac",
                                "pac12",
                                "pac12afterdark",
                                "pacers",
                                "pacific",
                                "packers",
                                "packy-mccormick",
                                "packym",
                                "pacquiao",
                                "pacto-historico",
                                "paddy",
                                "pakistan-super-league",
                                "pakistan-t20",
                                "palantir",
                                "palestine",
                                "palestine-protests",
                                "palestinian",
                                "palestinian-authority",
                                "palmer-lucky",
                                "pam-bondi",
                                "pandemics",
                                "paok",
                                "paraguay",
                                "paralympics",
                                "parcl",
                                "pardon",
                                "parent-for-derivative",
                                "paris",
                                "paris-election",
                                "paris-saint-germain",
                                "parlays",
                                "partido-popular",
                                "parties",
                                "party-switching",
                                "patek",
                                "patek-index",
                                "patrick-mahomes",
                                "patrik-antonius",
                                "paul-giamatti",
                                "paul-vspt-chavez-jrpt",
                                "paul-vspt-tyson",
                                "pavel",
                                "paxton",
                                "payouts",
                                "payroll",
                                "payx",
                                "pcc",
                                "pcg",
                                "pd",
                                "peace",
                                "peace-deals",
                                "peace-negotiations",
                                "peace-talks",
                                "peach-bowl",
                                "peak",
                                "pedophile",
                                "pedro-pascal",
                                "peds",
                                "pelosi",
                                "penalties",
                                "pengu",
                                "penguin",
                                "penguins",
                                "pennant",
                                "people",
                                "people-power-party",
                                "peoples-power-party",
                                "peptron",
                                "perfect-bracket",
                                "perfect-game",
                                "perfect-timing",
                                "perle-labs",
                                "perplexity",
                                "person-of-the-year",
                                "personal-life",
                                "peru-elections",
                                "peruvian",
                                "pervert",
                                "petal",
                                "pete-buttigieg",
                                "peter-magyar",
                                "peter-pellegrini",
                                "peter-thiel",
                                "petroleum",
                                "pewdiepie",
                                "pfl",
                                "pga-championship",
                                "pgl-astana-2026",
                                "ph",
                                "pharma",
                                "pheic",
                                "philadelphia",
                                "philadelphia-76ers",
                                "philadelphia-eagles",
                                "philly",
                                "phoenix",
                                "phone",
                                "physics",
                                "piastri",
                                "pickleball",
                                "pierre",
                                "pink",
                                "pins",
                                "pipe-line",
                                "pipr",
                                "pitt",
                                "pittsburgh-steelers",
                                "planes",
                                "planet",
                                "play",
                                "play-store",
                                "play-in",
                                "player-of-the-match",
                                "player-of-the-month",
                                "super-bowl-lix-player-props",
                                "player-selection",
                                "playoff-series",
                                "playoffs",
                                "plby",
                                "pll",
                                "pltr",
                                "plunket-shield",
                                "pmqs",
                                "pnc",
                                "poilievre",
                                "points",
                                "points-leadpt-tags-2024-presidential-election",
                                "pokemon",
                                "poker-warning",
                                "pokers",
                                "poland",
                                "politics",
                                "poll",
                                "pollling",
                                "pool-b",
                                "pool-c",
                                "pool-d",
                                "poor-things",
                                "pope",
                                "pope-francis",
                                "pope-leo-xiv",
                                "popular-vote",
                                "popularity",
                                "population",
                                "porn-star",
                                "port",
                                "port-of-baltimore",
                                "portnoy",
                                "porto",
                                "ports",
                                "portugal",
                                "portugal-election",
                                "post",
                                "pot",
                                "potm",
                                "potusbanner",
                                "poty",
                                "powell",
                                "power",
                                "powl",
                                "pp",
                                "ppa",
                                "ppeline",
                                "prasanna",
                                "pre-market",
                                "prediction-market",
                                "predictions",
                                "pregnant",
                                "premier-lacrosse-league",
                                "preseason",
                                "president",
                                "presidente",
                                "presidential",
                                "presidential-debate",
                                "presidential-election-2023",
                                "presidential-election-2024",
                                "presidential-nomination",
                                "presidential-race",
                                "preston",
                                "preston-north-end",
                                "price-prediction",
                                "pricing",
                                "primaries",
                                "primary",
                                "primary-ballot",
                                "primary-debate",
                                "primary-elections",
                                "prime-minister",
                                "printr",
                                "prison",
                                "privacy-issue",
                                "prize",
                                "prize-money",
                                "pro-a",
                                "probable",
                                "procreate-pocket",
                                "product-launch",
                                "product-marekt-fit",
                                "professional-golf",
                                "professional-wrestling",
                                "profit",
                                "profits",
                                "prograis",
                                "proof-of-citizenship",
                                "prop",
                                "proposition",
                                "props",
                                "protest",
                                "soccer-hr1",
                                "psg",
                                "psilocybin",
                                "psky",
                                "psoe",
                                "psv",
                                "pton",
                                "public-opinion",
                                "public-policy",
                                "public-release",
                                "pudgy",
                                "pudgy-penguins",
                                "puerto-vallarta",
                                "puffer",
                                "puffpaw",
                                "pull-out",
                                "pump",
                                "punts",
                                "pup",
                                "purdue",
                                "purges",
                                "pusha-t",
                                "putin",
                                "pvv",
                                "pxlw",
                                "pypl",
                                "pzza",
                                "q2-2024",
                                "q3",
                                "q4",
                                "qb",
                                "qbs",
                                "qfex",
                                "qingdao",
                                "qqq",
                                "quade",
                                "qualification",
                                "qualifying",
                                "quantative-tight",
                                "quantum-computer",
                                "quarantine",
                                "quarterly",
                                "quarterly-reporting",
                                "quatar",
                                "quebec",
                                "queen-anne-stakes",
                                "question-6",
                                "rabios",
                                "races",
                                "racketeering-conspiracy",
                                "raf",
                                "raja",
                                "ramadan",
                                "ramone",
                                "rampage",
                                "ramzan-kadyrov",
                                "randy-orton",
                                "rankings",
                                "ransomware",
                                "rap",
                                "rapid-chess",
                                "raptors",
                                "rate",
                                "rates",
                                "rating",
                                "ravens",
                                "ravens-vs-bills",
                                "ravis-kelce",
                                "razorbacks",
                                "rba",
                                "rbi",
                                "rblx",
                                "rbnz",
                                "rbrk",
                                "rcl",
                                "rddt",
                                "real-clear",
                                "real-madrid",
                                "real-sociedad",
                                "realcelar",
                                "realclear",
                                "reason-and-justice",
                                "rebels",
                                "rebounds",
                                "recall",
                                "recession",
                                "reconciliation",
                                "record-of-the-year",
                                "record-temperatures",
                                "records",
                                "recurring",
                                "red-bull-racing",
                                "red-card",
                                "red-cards",
                                "red-river",
                                "red-sea",
                                "red-star-belgrade",
                                "redbull",
                                "reddit",
                                "reefer",
                                "referendums",
                                "referendums-midterms",
                                "refinery",
                                "reform",
                                "refugees",
                                "regis-prograis",
                                "regulation",
                                "regulatory-affairs",
                                "regulatory-news",
                                "relationships",
                                "relay",
                                "release-date",
                                "release-dates",
                                "relegation",
                                "remove",
                                "renoir",
                                "report",
                                "repredsentative",
                                "republican",
                                "republican-caucus",
                                "republican-national-convention",
                                "republican-nomination",
                                "republican-party",
                                "republican-primaries",
                                "republican-primary",
                                "republicans",
                                "research",
                                "resign",
                                "resignation",
                                "resignations",
                                "respiratory-illness",
                                "revenue",
                                "rewards-20-4pt5-50",
                                "rewards-300-4pt5-50",
                                "rewards-50-4pt5-100",
                                "rewards-automation-50-4pt5-50",
                                "reya",
                                "reza-pahlavi",
                                "rfk",
                                "rfs",
                                "rhea-ripley",
                                "rhineland-palatinate",
                                "rhode-island-midterm",
                                "rhode-island-primary",
                                "rifle",
                                "ring-of-fire",
                                "riot",
                                "ripple",
                                "rippling",
                                "rl",
                                "rn",
                                "ro-khanna",
                                "rob-pelinka",
                                "robert",
                                "robert-de-niro",
                                "robert-downey-jrpt",
                                "robert-fico",
                                "robert-kennedy-jrpt",
                                "robinhood",
                                "robinson",
                                "robot-dreams",
                                "robotaxi",
                                "rocket",
                                "rocket-launch",
                                "rockets",
                                "rogers",
                                "roku",
                                "roland-garros",
                                "roland-gutierrez",
                                "rolando",
                                "rolex-index",
                                "roll",
                                "roma",
                                "romania",
                                "rome",
                                "ron-paul",
                                "ronna-mcdaniel",
                                "rookie",
                                "rookie-of-the-year",
                                "roon",
                                "rory",
                                "rory-mcilroy",
                                "rosen",
                                "ross",
                                "roster-moves",
                                "rotterdam",
                                "rousey",
                                "rousey-vspt-carano",
                                "royal-ascot",
                                "rsp",
                                "rublev",
                                "rueben-bain-jrpt",
                                "rugby-champions-cup",
                                "rugby-premiership",
                                "rugby-top-14",
                                "rum",
                                "rumor",
                                "rumors",
                                "run",
                                "running",
                                "running-back",
                                "russ",
                                "russel-wilson",
                                "russell",
                                "russell-wilson",
                                "rus",
                                "rwa",
                                "ryan-gosling",
                                "ryan-petersen",
                                "ryder-cup",
                                "sp-500",
                                "sa20",
                                "sabalenka",
                                "sachsen-anhalt",
                                "sacramento-kings",
                                "saga",
                                "sailing",
                                "saint",
                                "saints",
                                "sainz",
                                "saks",
                                "salah",
                                "sally-kornbluth",
                                "sam",
                                "sam-bankman-fried",
                                "sama",
                                "sama-altman",
                                "sami-zayn",
                                "san-diego",
                                "san-diego-state",
                                "san-francisco",
                                "san-jose-sharks",
                                "san-marino",
                                "sanae",
                                "sanders",
                                "sanremo",
                                "santa-monica",
                                "santos",
                                "sao-paulo",
                                "sapraicone",
                                "saquon-barkley",
                                "sarah-huckabee-sanders",
                                "satellite-internet",
                                "satoshi-nakamoto",
                                "saudi",
                                "saudi-aramco",
                                "saudi-club",
                                "save-act",
                                "saxony-anhalt",
                                "sbf",
                                "sbux",
                                "scandal",
                                "scandals",
                                "scheffler",
                                "scie",
                                "scorigami",
                                "scoring",
                                "scott",
                                "scottie-scheffler",
                                "soccer-scoc",
                                "scottish-premiership",
                                "screenplay",
                                "sdh100rt",
                                "sea",
                                "seahawks",
                                "sean",
                                "sean-combs",
                                "sean-omalley",
                                "sean-patrick-maloney",
                                "sean-strickland",
                                "season-3",
                                "season-finale",
                                "seattle-seahawks",
                                "sec",
                                "second",
                                "second-quarter",
                                "secretary",
                                "secretary-of-homeland-security",
                                "secretary-of-labor",
                                "security",
                                "seduce",
                                "seeker",
                                "seguro",
                                "self-driving",
                                "semen",
                                "senate-elections",
                                "senate-midterms",
                                "senate-primary",
                                "senate-1",
                                "senators",
                                "senegal",
                                "sentate",
                                "sentient",
                                "sentio",
                                "september-5",
                                "sergio-massa",
                                "seria-a",
                                "serie-a",
                                "serie-b",
                                "series",
                                "series-length",
                                "series-winner",
                                "settlements",
                                "sex-tape",
                                "sex-trafficking",
                                "sexual-misconduct",
                                "sexy",
                                "sg",
                                "shadeur",
                                "shai-gilgeous-alexander",
                                "shak",
                                "shaktar-donetsk",
                                "shakur",
                                "shakur-stevenson",
                                "shanghai",
                                "shanghai-rolex-masters",
                                "shaudeur",
                                "sheffield-shield",
                                "sheikh-hasina",
                                "shein",
                                "shenzhen",
                                "sherrod-brown",
                                "shipping",
                                "ships",
                                "shl",
                                "shooter",
                                "shop",
                                "shutdown",
                                "sides",
                                "signed",
                                "silver",
                                "simulate",
                                "sinai",
                                "sinaloa-cartel",
                                "sinema",
                                "singapur",
                                "siri",
                                "six-kings",
                                "skip-bayless",
                                "skr",
                                "skyscraper-climb",
                                "slerf",
                                "slingshot",
                                "sliwa",
                                "slotkin",
                                "slovak-republic",
                                "slovan-bratislava",
                                "slovenia",
                                "smart-home",
                                "smotrich",
                                "snap-election",
                                "snex",
                                "snooker-championship",
                                "snow",
                                "snowfall",
                                "social-media-influencer",
                                "social-networking",
                                "social-policy",
                                "socks",
                                "sofr",
                                "sol",
                                "sol-raffle",
                                "solana",
                                "solana-network",
                                "solar-flare",
                                "solomon",
                                "solstice",
                                "somali",
                                "somaliland",
                                "song",
                                "song-of-the-year",
                                "songs",
                                "sonny-styles",
                                "sono",
                                "sony",
                                "sora",
                                "sothebys",
                                "soun",
                                "south-africa",
                                "south-australia",
                                "south-carolina",
                                "south-carolina-primary",
                                "south-dakota-midterm",
                                "south-dakota-primary",
                                "south-korea",
                                "south-korea-election",
                                "southern-poverty-law-center",
                                "sovereignty",
                                "space",
                                "space-exploration",
                                "space-travel",
                                "spain",
                                "spain-national-team",
                                "spanish-super-cup",
                                "spar",
                                "spce",
                                "speak",
                                "speaker",
                                "speaker-election",
                                "special",
                                "special-elections",
                                "special-olympics",
                                "specil-election",
                                "speech",
                                "speech-analysis",
                                "speech-patterns",
                                "speed",
                                "speed-kai",
                                "spencer-fano",
                                "spgi",
                                "spider-man",
                                "spit-on-that-thang",
                                "splc",
                                "split",
                                "split-ticket",
                                "sport",
                                "sports",
                                "spot",
                                "spotify",
                                "spurs",
                                "spy",
                                "st-penn",
                                "stablecoins",
                                "staked",
                                "stanley-cup",
                                "stanton",
                                "star-spangled-banner",
                                "starknet",
                                "starlink",
                                "starmer",
                                "stars-and-stripes",
                                "starship",
                                "startups",
                                "state-of-the-union",
                                "state-of-union",
                                "state-presidential-election",
                                "statistics",
                                "steelers",
                                "stein",
                                "steph",
                                "stephen-curry",
                                "stephen-miran",
                                "sterling-kpt-brown",
                                "steve-grove",
                                "steven-keough",
                                "stock",
                                "stock-exchange",
                                "stock-exchnage",
                                "stock-market",
                                "stock-trading",
                                "stoke-city",
                                "stokes-twins",
                                "stolen-bases",
                                "story-protocol",
                                "strategic-bitcoin-reserve",
                                "stratton",
                                "strikes",
                                "stripe",
                                "strk",
                                "stub",
                                "sturm-graz",
                                "submarine",
                                "subscribers",
                                "subway",
                                "subway-series",
                                "sudan",
                                "sue",
                                "sugar-bowl",
                                "suit",
                                "sunbelt",
                                "sundar-pichai",
                                "suns",
                                "super-bowl",
                                "super-bowl-lix",
                                "super-bowl-lix-specials",
                                "super-bowl-lviii",
                                "super-bowl-lx",
                                "super-bowl-props",
                                "super-bowl-tv",
                                "super-fights",
                                "super-lig",
                                "super-rugby-pacific",
                                "super-smash",
                                "super-tuesday",
                                "superbowl",
                                "supercup",
                                "supoer-bowl-lix",
                                "supreme-court",
                                "supreme-leader",
                                "surf",
                                "suriname",
                                "surveillance",
                                "swalwell",
                                "swbi",
                                "sweden",
                                "sweet-sixteen",
                                "swiatek",
                                "swift",
                                "swimming",
                                "swing-states",
                                "swiss-open",
                                "switch",
                                "switzerland",
                                "sydney-sweeny",
                                "syracuse",
                                "sza",
                                "t-mobile",
                                "t1",
                                "t20",
                                "t20-blast",
                                "soccer-ptc",
                                "taipei",
                                "tairffs",
                                "taiwan-election",
                                "takaichi",
                                "takeover",
                                "talarico",
                                "taliban",
                                "talk-tuah",
                                "tamil",
                                "tammy",
                                "tanner-bibee",
                                "tanzania",
                                "tape",
                                "tariff",
                                "tariffs",
                                "tarriffs",
                                "tate",
                                "tatis",
                                "tax-cut",
                                "taxes",
                                "taylor-swift",
                                "tbph",
                                "TBPN",
                                "tcs-london-marathon",
                                "tcu",
                                "tdoc",
                                "tea-dating-advice",
                                "team-of-the-season",
                                "team-totals",
                                "teamwater",
                                "tears-of-the-kingdom",
                                "tech",
                                "tech-releases",
                                "technology",
                                "ted-cruz",
                                "tel-aviv",
                                "temp",
                                "tempo",
                                "tenent",
                                "tenet",
                                "tennessee-midterm",
                                "tennis",
                                "tensor",
                                "teofimo",
                                "teofimo-lopez",
                                "terra-wortmann",
                                "terry-rozier",
                                "test1",
                                "tether",
                                "texans-vs-rams",
                                "texas",
                                "texas-midterm",
                                "texas-redistricting",
                                "texas-senate",
                                "tfc",
                                "soccer-trsk",
                                "tfx",
                                "tgt",
                                "thai",
                                "thailand-election",
                                "thanksgiveing",
                                "thanksgiving",
                                "thanksgiving-football",
                                "thc",
                                "the-bear",
                                "the-block",
                                "the-boy-and-the-heron",
                                "the-boys",
                                "the-everest",
                                "the-fall-off",
                                "the-fire-inside",
                                "the-hunger-games",
                                "the-legend-of-zelda",
                                "the-masters",
                                "the-open",
                                "the-ring",
                                "the-ring-6",
                                "theo",
                                "thierry-tchenko",
                                "third",
                                "third-party",
                                "third-quarter",
                                "thomas-dickey",
                                "threadguy",
                                "thunberg",
                                "thune",
                                "tide",
                                "tiger",
                                "tiger-woods",
                                "tik-tok",
                                "tim-ryan",
                                "tim-scott",
                                "timberwolves",
                                "time",
                                "time-magazine",
                                "time-poty",
                                "timothee-chalamet",
                                "tinder",
                                "tipping-point",
                                "titanic",
                                "titans",
                                "tjx",
                                "tmtg",
                                "tmus",
                                "toads",
                                "olympics-today",
                                "todays-sports",
                                "togi",
                                "token",
                                "token-launches",
                                "token-sale",
                                "token-sales",
                                "toledo",
                                "tom-aspinal",
                                "tom-asprinall",
                                "tom-brady",
                                "tony-snell",
                                "top-10",
                                "top-model",
                                "top-navbar",
                                "top-netflix",
                                "top-performer",
                                "topuria",
                                "tori",
                                "tornadoes",
                                "toronto-maple-leafs",
                                "torpedo-bat",
                                "torrie",
                                "tost",
                                "total",
                                "totals",
                                "tottenham",
                                "touchdowns",
                                "tour-de-france",
                                "tourism",
                                "tournament",
                                "trade",
                                "trading_axe",
                                "tradition",
                                "traditions",
                                "trail-blazers",
                                "trailers",
                                "trans",
                                "transfer-window",
                                "transgender",
                                "transit",
                                "transportation-security-administration",
                                "travel",
                                "travel-ban",
                                "travelers-championship",
                                "travis",
                                "travis-hunter",
                                "travis-scott",
                                "treasury",
                                "tremp",
                                "trending-markets",
                                "trey-hendrickson",
                                "trey-stone",
                                "tria",
                                "trial",
                                "trick-williams",
                                "triple-crown",
                                "triple-double",
                                "triples",
                                "tristan-tate",
                                "trojans",
                                "tron",
                                "troops",
                                "trucker-strike",
                                "trudeau",
                                "trudeau-out",
                                "trump",
                                "trump-100-days",
                                "trump-media",
                                "trump-presidency",
                                "trump-trials",
                                "trump-vpt-casa",
                                "trump-vs-elon",
                                "trump-x-al-sharaa",
                                "trump-x-mamdani",
                                "trump-x-saudi",
                                "trump-machado",
                                "trump-netanyahu",
                                "trump-zelenskyy",
                                "trunout",
                                "truth",
                                "tsem",
                                "tsla",
                                "tsm",
                                "ttd",
                                "ttu",
                                "tua",
                                "tuah-talk",
                                "tucker-carlson",
                                "tulane",
                                "tulsi-gabbard",
                                "tunisia",
                                "turkey",
                                "bkbsl",
                                "turn-out",
                                "turnout",
                                "tv",
                                "tvl",
                                "tw",
                                "tweet",
                                "twente",
                                "txn",
                                "txrh",
                                "ty-pinkins",
                                "tyson-fury",
                                "uptspt-2024",
                                "uptspt-2024-elections",
                                "uptspt-congress",
                                "uptspt-election",
                                "uptspt-politics",
                                "uptspt-presidential-election-2024",
                                "uptspt-supreme-court",
                                "trump-iran",
                                "ual",
                                "uap",
                                "uber",
                                "uef-qualifiers",
                                "uefa",
                                "uefa-conference-league",
                                "soccer-ueq",
                                "UEFA-Europa-Conference-League",
                                "uefa-europa-league",
                                "uefa-european-u21",
                                "uefa-nations-league",
                                "uefa-u21",
                                "uefa-womens-euro",
                                "uel",
                                "ufc-308",
                                "ufc-316",
                                "ufc-317",
                                "ufc-fight-night",
                                "uga",
                                "uhalptb",
                                "uhc",
                                "uk-elections",
                                "ukraine-map",
                                "ukraine-peace-deal",
                                "ukraine-premier-liha",
                                "un",
                                "unc",
                                "unders",
                                "unfi",
                                "unh",
                                "union-saint-gilloise",
                                "union-st-gilloise",
                                "union-stpt-gilloise",
                                "uniswap",
                                "unit",
                                "unitas-labs",
                                "united-arab-emirates",
                                "united-kingdome",
                                "united-nations",
                                "united-rugby-championship",
                                "united-states-grand-prix",
                                "unitedhealthcare",
                                "unp",
                                "unrwa",
                                "unty",
                                "unwell-winter-games",
                                "uruguay",
                                "us",
                                "us-presidential-election",
                                "us-employment",
                                "us-jobs",
                                "us-market",
                                "us-military",
                                "us-news",
                                "us-open",
                                "us-politics",
                                "us-presidential-election-2024",
                                "us-election",
                                "usar",
                                "usbp",
                                "usd",
                                "usdptai",
                                "usdkrw",
                                "usdc",
                                "usdcad",
                                "usde",
                                "usdjpy",
                                "usdt",
                                "user-fees",
                                "users",
                                "usher",
                                "usps",
                                "usyk-vspt-dubois",
                                "usyk-vspt-fury",
                                "ut",
                                "utah",
                                "vacancy",
                                "val",
                                "valantis",
                                "valencia",
                                "valorant",
                                "valuation",
                                "valve",
                                "vance-boelter",
                                "vancouver-canucks",
                                "vanderbilt",
                                "vanguard",
                                "vatican",
                                "veep",
                                "vegas",
                                "vegas-golden-knights",
                                "venezuela",
                                "ventuals",
                                "ventura",
                                "verizon",
                                "vermont",
                                "verstappen",
                                "vessel",
                                "vfb",
                                "vice-president",
                                "vice-president-nomination",
                                "vice-presidential-nomination",
                                "victor-gyokeres",
                                "victoria-monet",
                                "video-appearance",
                                "video-game",
                                "viewer",
                                "views",
                                "vikings",
                                "viktoria-plzen",
                                "vini-jr",
                                "virginia-attorney-general",
                                "virginia-elections",
                                "virginia-governor",
                                "virgins",
                                "virt",
                                "virus",
                                "visa",
                                "vitality",
                                "vivek",
                                "vivek-ramaswamy",
                                "vogue",
                                "volatility",
                                "volcanic-eruption",
                                "volcano",
                                "volcanoes",
                                "volleyball",
                                "vooi",
                                "vote",
                                "vote-against",
                                "vote-counting",
                                "voter-fraud",
                                "votes",
                                "voting-results",
                                "vp-debate",
                                "vp-nominee",
                                "vsco",
                                "bkvtb",
                                "wales",
                                "walks",
                                "wallet",
                                "walz",
                                "war",
                                "warner-bros",
                                "warsaw",
                                "washington-capitals",
                                "washington-midterm",
                                "washington-st",
                                "watch",
                                "watson-vpt-republican-national-committe",
                                "way",
                                "waymo",
                                "wb",
                                "wbb",
                                "soccer-afwq",
                                "soccer-aswq",
                                "soccer-ewq",
                                "soccer-nawq",
                                "soccer-owq",
                                "soccer-sawq",
                                "wday",
                                "wdfc",
                                "week-14",
                                "week-15",
                                "week-16",
                                "week-9",
                                "weekly",
                                "welch",
                                "welterweight",
                                "wemby",
                                "wen",
                                "wesley-hunt",
                                "west-bank",
                                "west-virginia-midterm",
                                "western-kentucky",
                                "wework",
                                "wfc",
                                "whca",
                                "which-one",
                                "whistleblower",
                                "white-house-correspondents",
                                "who",
                                "wif-sphere",
                                "wigan-athletic",
                                "wild",
                                "wildfire",
                                "wildfirezz",
                                "williams",
                                "wimbledon",
                                "wing",
                                "wingbits",
                                "winnipeg-jets",
                                "winter",
                                "wireless-festival",
                                "wisconisin",
                                "wisconsin",
                                "wisconsin-midterm",
                                "wish",
                                "wix",
                                "wjc",
                                "wlfi",
                                "wnba",
                                "wnba-finals",
                                "wolverhampton",
                                "wolverines",
                                "woman",
                                "womens-champions-league",
                                "womens-national-cricket-league",
                                "womens-wrestling",
                                "womens-ballon-dor",
                                "wonka",
                                "world-affairs",
                                "World-Baseball-Classic",
                                "world-chess-championship",
                                "world-coin",
                                "world-cup-qualifier",
                                "world-elctions",
                                "world-election",
                                "world-health-organization",
                                "world-leader",
                                "world-leaders",
                                "world-presidency",
                                "world-series",
                                "world-series-of-poker",
                                "worlds",
                                "wormhole-token",
                                "wr-masters",
                                "wrby",
                                "wrestlemania",
                                "wrestling",
                                "wrting",
                                "wsm",
                                "wta-cincinnati",
                                "wta-montreal",
                                "wta-tokyo",
                                "wtfc",
                                "wttws",
                                "wuhan",
                                "wv",
                                "wwe",
                                "wycombe-wanderers",
                                "wyndham-championship",
                                "wynn",
                                "wyoming",
                                "wyoming-midterm",
                                "x-risk",
                                "xai",
                                "xeet",
                                "xi",
                                "xrp",
                                "xrp-prices",
                                "xtrd-1",
                                "xochitl-galvez",
                                "yahya-sinwar",
                                "yale",
                                "yamaka",
                                "yankees",
                                "year-comparison",
                                "yellow-card",
                                "yelp",
                                "yemen",
                                "yemeni-houthis",
                                "yk-osiris",
                                "ynw-melly",
                                "yoptxyz",
                                "yom",
                                "yoon",
                                "yorgos-lanthimos",
                                "young-boys",
                                "yoututbe",
                                "yr4",
                                "yuan",
                                "yum",
                                "zachxbt",
                                "zaporizhzhia",
                                "zcash",
                                "zeldin",
                                "zelensky",
                                "zelenskyy",
                                "zerohedge",
                                "zhengzhou",
                                "ziggy",
                                "zksync",
                                "zohran-mamdani",
                                "zone-of-interest",
                                "zuffa",
                                "zvbear",
                                "zverev",
                                "zyn",
                                "stefan-harabin"
                            ],
                            "enumTitles": [
                                "\"the zone of interest\"",
                                "$DOGE",
                                "$PENGU",
                                "$YZY",
                                "0X",
                                "10, 4.5, 50",
                                "100thieves",
                                "15 seed",
                                "1H",
                                "2023-24 season",
                                "2024 ballot",
                                "2024 ca senate primary",
                                "2024 elections",
                                "2024 nomination",
                                "2024 republican iowa caucus",
                                "2024 republican presidential nomination",
                                "2024 republican vp nomination",
                                "2024 senate primary",
                                "2024 us presidential election",
                                "2024 vp nomination",
                                "2024-25 season",
                                "2026",
                                "2026 all-star",
                                "2026 dunk",
                                "2026 FIFA World Cup",
                                "2026 NBA Draft",
                                "2026 NBA Playoffs",
                                "270",
                                "2K",
                                "2nd ammendment",
                                "3-point contest",
                                "309",
                                "310",
                                "3Jane",
                                "3pt",
                                "3rd party",
                                "538",
                                "538 approval rating",
                                "5M",
                                "6 more weeks of winter",
                                "75th emmys",
                                "A.J. Brown",
                                "AAC",
                                "Aaron",
                                "aaron rodgers",
                                "AAVE",
                                "ABA League",
                                "abbas",
                                "ABNB",
                                "Abraham Accords",
                                "AC Milan",
                                "academia",
                                "ACC",
                                "account deactivation",
                                "Ace",
                                "ackman",
                                "ACM",
                                "ACN",
                                "Acquisitions",
                                "acting",
                                "acu23",
                                "adam 22",
                                "adam d'angelo",
                                "ADBE",
                                "Adin Ross",
                                "ADSK",
                                "advertising",
                                "advertising revenue",
                                "aella",
                                "AEO",
                                "AFC Championship",
                                "AFC North",
                                "AFC South",
                                "Afghanistan",
                                "Afghanistan vs West Indies (T20I)",
                                "Afhganistan",
                                "Africa Cup of Nations",
                                "AG",
                                "AHL",
                                "AI",
                                "ai technology",
                                "aid",
                                "aid package",
                                "air",
                                "Air Force",
                                "airdrop",
                                "airplane",
                                "airport",
                                "Ajax",
                                "AKAM",
                                "AL",
                                "AL Central",
                                "AL East",
                                "AL MVP",
                                "AL West",
                                "Al-Tanf",
                                "alabama",
                                "Alabama Midterm",
                                "Alabama Primary",
                                "alaska",
                                "Alaska Primary",
                                "Albania",
                                "alberta",
                                "album",
                                "album of the year",
                                "album release",
                                "albums",
                                "Alex",
                                "Alex Cooper",
                                "alex jones",
                                "Alex Ovechkin",
                                "Alexander Isak",
                                "alexander stubb",
                                "Ali Khamenei",
                                "Alibaba",
                                "alien",
                                "Aligned Layer",
                                "Alireza Firouzja",
                                "Alix earle",
                                "All",
                                "All Star Weekend",
                                "All-In",
                                "All-Star",
                                "Allah",
                                "Alliance 90",
                                "allred",
                                "ALLY",
                                "Alpha arena",
                                "alsobrookls",
                                "Altcoins",
                                "Altman",
                                "Alvin",
                                "aly ngouille ndiaye",
                                "AMAT",
                                "amazon",
                                "Ambassador",
                                "AMC",
                                "America Party",
                                "american fiction",
                                "american football conference",
                                "American League",
                                "american samoa",
                                "AMPL",
                                "amy klobuchar",
                                "Andalucia",
                                "Andrew Mountbatten-Windsor",
                                "andrew scott",
                                "andrew tate",
                                "andy levin",
                                "Angel Reese",
                                "animated feature film",
                                "animation",
                                "anime",
                                "anish agnihotri",
                                "anne",
                                "announcements",
                                "Ansem ",
                                "Ansem vs. Barney",
                                "Anthem",
                                "anthony fauci",
                                "anthony joshua",
                                "anthropic",
                                "antisemitism",
                                "antitrust",
                                "Antoine Massey",
                                "AP index",
                                "Apology",
                                "App Store",
                                "appears",
                                "apple music",
                                "appointments",
                                "Approval",
                                "approval rating",
                                "APR",
                                "aragonese",
                                "Arc",
                                "ARCC",
                                "arch",
                                "archeology",
                                "Arcium",
                                "Argentina",
                                "Argentina Election",
                                "Argentina Primera División",
                                "argylle",
                                "Ariana",
                                "arizona",
                                "Arizona Coyotes",
                                "Arizona Primary",
                                "arkansas",
                                "Arkansas Primary",
                                "arlington cemetery",
                                "Armenia",
                                "arrest",
                                "arrested",
                                "Arslanbek Makhmudov",
                                "art",
                                "Artifical intelligence",
                                "artificial general intelligence",
                                "artificial intelligence",
                                "Arvell Reese",
                                "arévalo",
                                "AS",
                                "AS Monaco",
                                "AS Roma",
                                "asa hutchinson",
                                "ASAN",
                                "ASAP Rocky",
                                "ASG",
                                "asheville",
                                "Ashley St. Clair",
                                "Ashlyn Castro",
                                "Ashton Jeanty",
                                "ASO",
                                "Assad",
                                "assist",
                                "Assocaited Press",
                                "Aster",
                                "aston martin",
                                "astroid",
                                "astronomy",
                                "asylum",
                                "at&t",
                                "Athletic Bilbao",
                                "Athletic Club",
                                "Atlanta",
                                "atlanta falcons",
                                "ATO",
                                "atomic",
                                "ATP",
                                "ATP 250",
                                "ATP Båstad",
                                "ATP Cincinnati",
                                "ATP Finals",
                                "ATP Gstaad",
                                "ATP Toronto",
                                "ATP Umag",
                                "ATP Vienna Open",
                                "ATP Washington",
                                "ATP Washington D.C.",
                                "ATP Winston Salem",
                                "attack",
                                "Attackman",
                                "Auburn",
                                "Audemars Piguet",
                                "Audemars Piguet index",
                                "August 1",
                                "August 15",
                                "August 8",
                                "augusta",
                                "Aus",
                                "Austin",
                                "Austin Metcalf",
                                "Austin Theory",
                                "Australia Cup",
                                "Austria",
                                "autism",
                                "autonomous vehicles",
                                "Avalanche",
                                "AVGO",
                                "aviation",
                                "Awards",
                                "AWS",
                                "ayanna pressley",
                                "ayatollah",
                                "azerbaijan",
                                "AZO",
                                "baby",
                                "BAC",
                                "bachelorette",
                                "Backpack",
                                "bad bunny",
                                "Bad Bunny Halftime",
                                "badbunny",
                                "Baden-Württemberg",
                                "Badosa",
                                "BAFTA",
                                "bagram",
                                "Bailey",
                                "balance",
                                "ballots",
                                "Ballroom",
                                "Baltimore",
                                "baltimore ravens",
                                "Bang",
                                "bangladesh",
                                "Bank Failure",
                                "Bank of Canada",
                                "Bank of Japan",
                                "Bank of Utah Championship",
                                "bank rate",
                                "banking industry",
                                "bankrupt",
                                "bankruptcy",
                                "bans",
                                "barbara lee",
                                "barcelona",
                                "Barcelona Open",
                                "Barghouti",
                                "barrasso",
                                "barron",
                                "barry keoghan",
                                "Barstool",
                                "baseaball",
                                "baseball",
                                "Basektball",
                                "basetkball",
                                "Basketball",
                                "bassirou diomaye faye",
                                "bat",
                                "battle",
                                "Battle of the Sexes",
                                "bayern",
                                "BBBY",
                                "BBW",
                                "BBWI",
                                "BC",
                                "BCRA",
                                "BCSF",
                                "beach",
                                "beast",
                                "beeper mini",
                                "Beiber",
                                "Beijing",
                                "Beirut",
                                "Belgian GP",
                                "Belgium",
                                "belmont stakes",
                                "BEN",
                                "Ben Affleck",
                                "ben armstrong",
                                "ben carson",
                                "ben gvir",
                                "Ben Johnson",
                                "ben shapiro",
                                "Benfica",
                                "Benin",
                                "berachain",
                                "Berkley",
                                "bernie",
                                "bernie sanders",
                                "Besiktas",
                                "best actor",
                                "best adapted screenplay",
                                "best costume design",
                                "best director",
                                "best month",
                                "best new artist",
                                "best original screenplay",
                                "best picture",
                                "best supporting actor",
                                "best supporting actress",
                                "bet",
                                "Beterbiev",
                                "Betmoar",
                                "Betts",
                                "Bezos",
                                "BFC",
                                "Bhutan Tri-Series",
                                "Biden",
                                "bidenomics",
                                "Bieber",
                                "Big 10",
                                "Big 12",
                                "big 12 conference",
                                "Big Beautiful Bill",
                                "big content guy",
                                "Big Tech",
                                "big ten conference",
                                "big west",
                                "Biking",
                                "Bill Ackman",
                                "Bill Belichick",
                                "bill gates",
                                "billboard",
                                "billboard hot 100",
                                "Billions",
                                "bills",
                                "binance",
                                "bingo",
                                "BIRB",
                                "BIRD",
                                "bitboy crypto",
                                "Bitcoin",
                                "Bitcoin Conference",
                                "Bitcoin Dominance",
                                "Bitcoin Prices",
                                "BK",
                                "BKNG",
                                "black",
                                "black sea",
                                "blackout",
                                "BLACKPINK",
                                "Blanche",
                                "BLAST Fort Worth",
                                "BLK",
                                "Block Street",
                                "Blockade",
                                "bloomberg",
                                "bls",
                                "blue wall",
                                "Blues",
                                "bluesky",
                                "BMBL",
                                "BMW Championship",
                                "board changes",
                                "board resignations",
                                "boasberg",
                                "Bob Menery",
                                "bob odenkirk",
                                "Boca Raton Bowl",
                                "Boden",
                                "Boeing",
                                "Boise St",
                                "BOK",
                                "Bolivia Elections",
                                "Bolivia LFPB",
                                "Bologna",
                                "Bolojat",
                                "Bolsonaro",
                                "Bolton",
                                "bomb",
                                "Bond",
                                "bondi",
                                "Bonds",
                                "boobs",
                                "border issues",
                                "Border Patrol",
                                "BOSS Open",
                                "Boston Bruins",
                                "Boston Red Sox",
                                "box",
                                "box office",
                                "boxing/mma",
                                "bracketology",
                                "Braga",
                                "Brazil Serie A",
                                "Brazil Sèrie B",
                                "Breaking News",
                                "Breakup",
                                "Brentford",
                                "Brevis",
                                "brian kelly",
                                "bribe",
                                "brics",
                                "Bridge",
                                "brighton",
                                "Britain",
                                "British Open",
                                "Brock Lesnar",
                                "brock purdy",
                                "broncos",
                                "Brooks Koepka",
                                "brown",
                                "Brown University",
                                "bruno mars",
                                "Bryan Johnson",
                                "Bryce Hall",
                                "Bryson",
                                "Bryson Dechambeau",
                                "btc",
                                "btc price prediction",
                                "BTM",
                                "buccaneers",
                                "Bucharest Mayor",
                                "Buckets",
                                "BUD",
                                "budget",
                                "bueklele",
                                "Buenos Aires",
                                "buffalo bills",
                                "Buffalo Sabres",
                                "Buffs",
                                "bukele",
                                "Bulgaria",
                                "bulls",
                                "Bundesliga 2",
                                "BURL",
                                "bus",
                                "Bush",
                                "Business",
                                "business growth",
                                "busse",
                                "bussiness",
                                "Butker",
                                "Butler",
                                "buybacks",
                                "BVB",
                                "BX",
                                "by election",
                                "bybit",
                                "Bybit Hack",
                                "byron donalds",
                                "BYU",
                                "BZFD",
                                "C",
                                "ca-30 primary",
                                "cabinet for trump",
                                "Caesars entertainment",
                                "CAF",
                                "CAG",
                                "Cagliari",
                                "caitlin clark",
                                "Caleb Downs",
                                "caleb williams",
                                "California Governor",
                                "California Midterm",
                                "California Primary",
                                "california senate primary",
                                "Call of Duty",
                                "called",
                                "Cam Ward",
                                "Campeonato Mineiro",
                                "Cancer",
                                "Cannes",
                                "cantwell",
                                "cao",
                                "cape of good hope",
                                "Cape Town",
                                "Capital expenditures",
                                "Capitals",
                                "Carano",
                                "card",
                                "cardinals",
                                "career",
                                "Caribbean Premier League",
                                "carl sherman",
                                "Carlos Alcaraz",
                                "Carlos Ulberg",
                                "Carnell Tate",
                                "Carolina Hurricanes",
                                "CARP",
                                "cars",
                                "cartel",
                                "casey",
                                "Castro",
                                "CASY",
                                "CAT",
                                "cat lady",
                                "Catherine Connoly",
                                "cathloicism",
                                "Catholocism",
                                "caucus",
                                "caught",
                                "cavaliers",
                                "CBOE",
                                "CBOE Volatility Index",
                                "CBRE",
                                "CBRL",
                                "cdc",
                                "Celeb Coins",
                                "Celebrities",
                                "celebrity",
                                "celebrity all-star",
                                "celebrity events",
                                "celebrity game",
                                "celebrity news",
                                "Cellular Outage",
                                "Celta Vigo",
                                "Cenat",
                                "censure",
                                "Central",
                                "CEOs",
                                "Cezanne",
                                "CFG",
                                "CFP",
                                "CFPB",
                                "CGBD",
                                "chad",
                                "Chainlink",
                                "Chair of the Federal Reserve",
                                "Chamath",
                                "Champions Chess Tour",
                                "Champions League",
                                "Champions League Basketball",
                                "Champions League Final",
                                "championship",
                                "change",
                                "charlestin",
                                "Charli XCX",
                                "Charlie Kirk",
                                "charts",
                                "Cheat",
                                "Checo Perez",
                                "cheesur",
                                "chega",
                                "Chelsea Clinton",
                                "Chengdu",
                                "Chess",
                                "CHGG",
                                "Chicago",
                                "chiefs",
                                "Chiefs vs Chargers",
                                "chile primera",
                                "China",
                                "chinese pneumonia outbreak",
                                "Chinese Super League",
                                "CHL",
                                "Chongqing",
                                "chp",
                                "chris christie",
                                "chris waller",
                                "Christmas",
                                "christmas day",
                                "christopher nolan",
                                "christopher waller",
                                "Churchill Downs",
                                "CHYM",
                                "CIA",
                                "Cincinnati Open",
                                "cinema",
                                "Citi DC Open",
                                "Citi Open",
                                "city council",
                                "CJNG",
                                "CL",
                                "clap",
                                "Claude",
                                "claudia sheinbaum",
                                "claudine gay",
                                "clean sheet",
                                "clean sheets",
                                "Cleveland",
                                "cleveland browns",
                                "clima",
                                "Climate & Science",
                                "climate & weather",
                                "climbing",
                                "clinton",
                                "clippers",
                                "close",
                                "cloudflare",
                                "clover",
                                "Club Atletico River Plate",
                                "cmc",
                                "CMG",
                                "coachella",
                                "coaching",
                                "coaching changes",
                                "coalition",
                                "cobie",
                                "coco jones",
                                "COD",
                                "Cody Rhodes",
                                "coinbase",
                                "coke",
                                "Colby Covington",
                                "Collectibles",
                                "Collective bargaining",
                                "college",
                                "College Basketball",
                                "college football",
                                "College Football Playoff",
                                "college Football Playoffs",
                                "colman domingo",
                                "Colombia Election",
                                "Colombia Primera A",
                                "Colorado Midterm",
                                "Colorado State",
                                "columbia",
                                "combat",
                                "comedy",
                                "comex",
                                "COMEX Copper Futures",
                                "COMEX Gold Features",
                                "COMEX Silver Futures",
                                "commemorative",
                                "Commodities",
                                "commodity",
                                "commodity market",
                                "communism",
                                "compliance",
                                "CONCACAF",
                                "CONCACAF Champions Cup",
                                "CONCAF",
                                "concession",
                                "confederate memorial",
                                "Conference Championship",
                                "Conference Finals",
                                "Conference Semifinals",
                                "conggress",
                                "congres",
                                "Congress Expulsions",
                                "CONMEBOL",
                                "Connecticut Primary",
                                "Conor Benn",
                                "conor mcgregor",
                                "Consensys",
                                "Conservative",
                                "consitution",
                                "conspiracy",
                                "constitution",
                                "Constitutional Convention",
                                "Constructor",
                                "contempt",
                                "Contempt of Congress",
                                "contests",
                                "controversies",
                                "controversy",
                                "Cooper Kupp",
                                "COP",
                                "Copa Del Rey",
                                "Copa do Brasil",
                                "Copa Liga Profesional",
                                "Copa Sudamericana",
                                "Coppa Italia",
                                "cornell",
                                "Cornhuskers",
                                "Cornyn",
                                "corporate news",
                                "corporate spy",
                                "COST",
                                "costume design",
                                "coup",
                                "Court",
                                "court cases",
                                "Courts",
                                "Coventry City",
                                "cowboys",
                                "cox",
                                "CPB",
                                "Cracker Barrel",
                                "cramer",
                                "CRCL",
                                "creator",
                                "Cricket Australia",
                                "Cricket England",
                                "Cricket New Zealand",
                                "Cricket South Africa",
                                "Cricket Test",
                                "Cricket UAE",
                                "Cricket Women Premier League",
                                "crimea",
                                "Crimson",
                                "Cristiano Ronaldo",
                                "CRM",
                                "Croatia",
                                "Crockett",
                                "CrowdStrike",
                                "Croydon",
                                "CRSP",
                                "crude",
                                "crude oil",
                                "CRWD",
                                "crypto gaming",
                                "Crypto Policy",
                                "Crypto Prices",
                                "crypto: the game",
                                "cryptocurrency",
                                "CryptoNewHide",
                                "cryptothegame",
                                "cryptozoo",
                                "csgo",
                                "CTAS",
                                "Cuck",
                                "Culture",
                                "culutre",
                                "Cuomo",
                                "currency",
                                "current events",
                                "curtis",
                                "Cuse",
                                "CVS",
                                "CVX",
                                "CWBB",
                                "CXM",
                                "Cy young",
                                "Cyber",
                                "cybersecurity",
                                "Cybertruck",
                                "cyclones",
                                "CYOM",
                                "Czechia",
                                "Czechia Fortuna Liga",
                                "CZR",
                                "da'vine joy randolph",
                                "Daily Strikes",
                                "DAL",
                                "dallas",
                                "dallas cowboys",
                                "dallas mavericks",
                                "Dallas Stars",
                                "damar",
                                "Damar Hamlin",
                                "dan eubanks",
                                "Dan Lanning",
                                "Dance",
                                "Daniel Jones",
                                "Daniel Penny",
                                "DAO",
                                "darnold",
                                "Darts",
                                "dasha",
                                "data breach",
                                "Databricks",
                                "dating",
                                "david",
                                "David Bailey",
                                "David Costello",
                                "david freidberg",
                                "david friedberg",
                                "david hoffman",
                                "Dawgs",
                                "Day",
                                "Daylight",
                                "daytona 500",
                                "DAZN",
                                "DBI",
                                "DDOG",
                                "De'Aaron Fox",
                                "deadpool 3",
                                "deals",
                                "dean phillips",
                                "deb fischer",
                                "Debate",
                                "debates",
                                "Debut",
                                "Decibel",
                                "declare",
                                "declare winner",
                                "Declassification",
                                "declassify",
                                "Deel",
                                "DeepSeek",
                                "defesne",
                                "Defi App",
                                "deficit",
                                "DEFT",
                                "DEGEN",
                                "DEHL",
                                "Delaware Primary",
                                "Delay",
                                "delcassification",
                                "delta",
                                "Dem Nominee",
                                "democracy",
                                "democrat",
                                "Democratic",
                                "democratic alliance",
                                "Democratic Party of Korea",
                                "democratic presidential nomination",
                                "Democratic Primary",
                                "democrats",
                                "demograohic",
                                "demographic",
                                "Demographics",
                                "Denmark",
                                "denver broncos",
                                "Department of Defense",
                                "Department of Homeland Security",
                                "deportation",
                                "Depreciated1",
                                "Depreciated2",
                                "Depreciated3",
                                "Depreciated5",
                                "Depreciated8",
                                "Depreciated9",
                                "Derivatives",
                                "dermographic",
                                "desantis",
                                "despicable me 4",
                                "destiny",
                                "detain",
                                "detroit lions",
                                "detroit pistons",
                                "Dewine",
                                "Dexter Lawrence",
                                "DFB-Pokal",
                                "DG",
                                "DHS",
                                "Dicks",
                                "Diddy",
                                "didy",
                                "digital art",
                                "digital trends",
                                "Dillon Gabriel",
                                "ding",
                                "Diplomatic meeting",
                                "DIS",
                                "disaster",
                                "disease",
                                "division",
                                "DJI",
                                "Djokovic",
                                "DJTARCH",
                                "DKNG",
                                "DKS",
                                "DLTR",
                                "DMR",
                                "DNC",
                                "DOCU",
                                "documents",
                                "dod",
                                "Dodgers",
                                "DOGE",
                                "Dogecoin",
                                "dogs",
                                "doj",
                                "Domer",
                                "Don't die",
                                "donald trump",
                                "donald trump jr.",
                                "donestk",
                                "donetsk",
                                "doomsday clock",
                                "Dota 2",
                                "Doubles",
                                "Doug Burgum",
                                "Doug Ford",
                                "Doug Polk",
                                "DP",
                                "DP World India Championship 2025",
                                "DP World Tour",
                                "dpk",
                                "DPOY",
                                "dpp",
                                "draft",
                                "drama",
                                "Draymond",
                                "drift",
                                "drill baby drill",
                                "drone attack",
                                "drug lord",
                                "drug policy",
                                "drugs",
                                "druze",
                                "du plessis",
                                "dua lipa",
                                "Dubai",
                                "ducks",
                                "Duke",
                                "Dumb Money",
                                "dune 2",
                                "dune: part two",
                                "Dunesday",
                                "dunk contest",
                                "dutch general election",
                                "Dvalishvili",
                                "Dwarf planet",
                                "Eagle",
                                "eagles",
                                "Earn 4%",
                                "Earnings Calls",
                                "earthquake",
                                "Easter",
                                "easy",
                                "EB",
                                "ECB",
                                "Ecf mvp",
                                "economic forecasting",
                                "Economic Policy",
                                "Economy",
                                "economy1",
                                "EdgeX",
                                "EFL Cup",
                                "Egg",
                                "egypt",
                                "egypt premier league",
                                "Eintracht",
                                "El Mencho",
                                "El paso",
                                "electio night",
                                "election",
                                "election 2024",
                                "election forecasting.",
                                "Election Night",
                                "Election Parlays",
                                "election results",
                                "elections 2024",
                                "elector",
                                "Electoral College ",
                                "electoral fraud",
                                "electoral votes: tags: politics",
                                "electricity",
                                "electronics",
                                "elemental",
                                "Eli Lilly",
                                "elite eight",
                                "elizabeth warren",
                                "Elon vs. OpenAI",
                                "Elordi",
                                "embargo",
                                "emmanuel",
                                "emmett shear",
                                "Emmys",
                                "employment",
                                "encrypt",
                                "end of year",
                                "energy industry",
                                "energy market",
                                "english",
                                "entertainment",
                                "entrepreneurship",
                                "environemntal protection",
                                "Enzo Maresca",
                                "EPL",
                                "Equities",
                                "Equity Daily Pyth",
                                "Equity Hit",
                                "Erupt",
                                "eruption",
                                "ESL",
                                "ESPN",
                                "ETF",
                                "ETF approval",
                                "etfs",
                                "ETHDenver",
                                "ethena",
                                "ether rock",
                                "Ethereal",
                                "Ethereum",
                                "Ethereum Dencun",
                                "Ethereum Prices",
                                "etherfi",
                                "ETHgas",
                                "ethics",
                                "Ethiopia",
                                "ETOR",
                                "ETSY",
                                "eu",
                                "Euro",
                                "Euro 2024",
                                "EuroBasket",
                                "Euroleague",
                                "Euroleague Basketball",
                                "Europa League",
                                "Europe",
                                "European",
                                "European Central Bank",
                                "European Championship",
                                "European Open",
                                "European Union",
                                "European Union ",
                                "Euros",
                                "eurozone",
                                "Event",
                                "event cancellations",
                                "events",
                                "Everest",
                                "Everton",
                                "evloev",
                                "EWCZ",
                                "EWY",
                                "ex risk",
                                "Exchange Rate",
                                "exchanges",
                                "Executive order",
                                "Executive Orders",
                                "exit",
                                "Expel",
                                "exploit",
                                "exploits",
                                "exploration",
                                "Extend",
                                "Extended",
                                "Extradite",
                                "extradition",
                                "F",
                                "f1",
                                "F1 Azerbaijan Grand Prix",
                                "F1 Singapore Grand Prix",
                                "F2",
                                "FAA",
                                "fabiano",
                                "Fabric",
                                "facebook",
                                "faculty",
                                "Fair bet act",
                                "falcons",
                                "Falkland Islands",
                                "fani willis",
                                "Fannie Mae",
                                "Fantasy Football",
                                "farm",
                                "Fashion",
                                "favorite",
                                "FC",
                                "FC Porto",
                                "FCSB",
                                "FDA",
                                "FDIC",
                                "FDV Flipping",
                                "FDX",
                                "Featured",
                                "february",
                                "february job report",
                                "Fed",
                                "Fed Chair",
                                "Federal",
                                "federal government",
                                "federal reserve",
                                "Federer",
                                "FedEx St. Jude Championship",
                                "Fees",
                                "Felix",
                                "female",
                                "FEMY",
                                "Fenerbahce",
                                "fertility",
                                "fertitta",
                                "Fetterman",
                                "Feyenoord",
                                "FIBA WCQ Africa",
                                "FIBA WCQ Americas",
                                "FIBA WCQ Asia",
                                "FIBA WCQ Europe",
                                "FIDE",
                                "FIDE candidates",
                                "fide grand swiss",
                                "Fidesz",
                                "field goal",
                                "FIFA Club World Cup",
                                "FIFA Women's World Cup",
                                "Fifa World Cup Qualifiers",
                                "fight",
                                "Fight On",
                                "fights",
                                "Figure",
                                "film",
                                "films",
                                "Final 4",
                                "Finals MVP",
                                "Finance",
                                "financial predictions",
                                "Finland",
                                "Finn Bálor",
                                "finnish politics",
                                "fire",
                                "fired",
                                "First 100 days",
                                "First Half",
                                "first quarter",
                                "first round",
                                "FIS",
                                "fito",
                                "FIVE",
                                "fivethiryeight",
                                "FL",
                                "flag football classic",
                                "flee",
                                "flight",
                                "flip off",
                                "Flood",
                                "Florentino Perez",
                                "Florida Panthers",
                                "Florida Primary",
                                "Florida State",
                                "floyd",
                                "flu",
                                "Fluent",
                                "FLUT",
                                "Flyers",
                                "Flying Tulip",
                                "FNF",
                                "fomc",
                                "food",
                                "Food and Drug Administration",
                                "Footbal",
                                "forecasting",
                                "foreign affairs",
                                "Foreign Policy",
                                "forex",
                                "Formula 1",
                                "formula one",
                                "fortune 100",
                                "fourth",
                                "fourth quarter",
                                "Fox Sports",
                                "FOXA",
                                "France",
                                "francis",
                                "Francis Mauigoa",
                                "Frank Lampard",
                                "frank larose",
                                "Frankfurt",
                                "Frankie",
                                "fraud",
                                "fred again",
                                "Freddie Mac",
                                "Freedom Flotilla",
                                "freedom watch",
                                "french",
                                "French Cup",
                                "French Elections",
                                "French Mayoral Elections",
                                "friend.tech",
                                "Frogs",
                                "frozen empire",
                                "FSK",
                                "ftc",
                                "FTC commissioner",
                                "FTDR",
                                "FTSE",
                                "ftx",
                                "Fuentes",
                                "Fulham",
                                "funding",
                                "funding bill",
                                "fundraising",
                                "furiosa",
                                "Fuse Energy",
                                "future events",
                                "future releases",
                                "future value",
                                "gabriel haines",
                                "Gala",
                                "Galatasaray",
                                "gallego",
                                "GAMB",
                                "gambling",
                                "Game 13",
                                "Game 14",
                                "Game 7",
                                "Game 8",
                                "Game Specials",
                                "Gamecocks",
                                "GameStop",
                                "gaming",
                                "gaming competition",
                                "Ganja",
                                "gantz",
                                "Garden Cup",
                                "garvey",
                                "Gator Bowl",
                                "gatorade",
                                "gatorade shower",
                                "gavin newsom",
                                "gay",
                                "Gaza",
                                "GBPUSD",
                                "GD",
                                "GDP",
                                "Gemeenteraad",
                                "Gemeenteraad van Amsterdam",
                                "Gemini",
                                "Gemini 3",
                                "gemini ultra",
                                "gender issues",
                                "General election",
                                "general tariff",
                                "generative",
                                "Genesis Invitational",
                                "genius",
                                "genocide",
                                "Gensyn",
                                "geography",
                                "George Pickens",
                                "george santos",
                                "georgia",
                                "Georgia Primary",
                                "German Politics",
                                "Germany",
                                "Germany BBL",
                                "GETY",
                                "ghannon burton",
                                "Ghislaine Maxwell",
                                "ghostbusters",
                                "ghostbusters: frozen empire",
                                "Giannis",
                                "Giannis Antetokounmpo",
                                "giants",
                                "gillibrand",
                                "Giro d'Italia",
                                "GIS",
                                "giveaways",
                                "giza",
                                "glenn youngkin",
                                "Global",
                                "Global GDP",
                                "global health",
                                "global logistics",
                                "global politics",
                                "Global Temp",
                                "global warming",
                                "GLP",
                                "gmail",
                                "goal",
                                "goal contributions",
                                "goalie",
                                "goalkeeper",
                                "Goals",
                                "Gold",
                                "golden boot",
                                "Golden Globes",
                                "Golden Knights",
                                "Golden State Warriors",
                                "google",
                                "Google Search",
                                "gop",
                                "gophers",
                                "Gorton and Denton",
                                "Governance",
                                "government",
                                "Governor midterms",
                                "Governor Primary",
                                "Governor Races",
                                "GPRO",
                                "gpt",
                                "gpt-4",
                                "gpt-4.5",
                                "GPT-5",
                                "GRAB",
                                "Grammys",
                                "Grand Chess Tour",
                                "grand theft auto",
                                "Grande",
                                "Greece",
                                "Greek Basketball League",
                                "Greek Cup",
                                "green",
                                "Green Bay",
                                "green bay packers",
                                "Green room",
                                "Greenland",
                                "Greta",
                                "Greta Thunberg",
                                "Gretchen Whitmer",
                                "Grok",
                                "groundhog",
                                "groundhog day",
                                "growth",
                                "groyper",
                                "GRPO",
                                "Gruden",
                                "Grünen",
                                "GS",
                                "GT",
                                "gubernatorial",
                                "gubernatorial election",
                                "gubernatorial race",
                                "Gukesh Dommaraju",
                                "Gulf",
                                "Gustavo Petro",
                                "guyana",
                                "gävle goat",
                                "H5N1",
                                "hacker",
                                "hacking",
                                "haiti",
                                "HAL",
                                "half-time",
                                "halftime",
                                "Haliburton",
                                "Haliey",
                                "Hamilton",
                                "handball",
                                "haney",
                                "haniyeh",
                                "hank aaron",
                                "hansen",
                                "Hantavirus",
                                "Harambe",
                                "harry",
                                "harvard",
                                "HAS",
                                "Hawaii",
                                "Hawaii Midterm",
                                "Hawaii Primary",
                                "Hawk Tuah",
                                "Hawkeyes",
                                "HD",
                                "Head of state",
                                "health",
                                "healthcare",
                                "hearing",
                                "heat increase",
                                "Hegseth",
                                "Heisman",
                                "heisman trophy",
                                "henry mcmaster",
                                "HESM",
                                "Hezbollah",
                                "HGV",
                                "HHH",
                                "HHS",
                                "hibachi",
                                "Hide From New",
                                "highs",
                                "hikaru nakamura",
                                "Hillary",
                                "hillary clinton",
                                "Hinge",
                                "HIP-4",
                                "HIP3",
                                "hiring",
                                "hirono",
                                "hispanic",
                                "history",
                                "hit piece",
                                "Hit Price",
                                "Hit Yearly",
                                "hitler",
                                "HKU5-CoV-2",
                                "HLT",
                                "Hochul",
                                "Hoddy Toddy",
                                "HOG",
                                "hogan",
                                "Hole in One",
                                "Holloway",
                                "hollywood",
                                "home run",
                                "Home Run Derby",
                                "Home runs",
                                "Homeland Security",
                                "Honduras",
                                "Hong Kong",
                                "Hong Kong T20 Premier League Women",
                                "Honor of Kings",
                                "HOOD",
                                "hooisers",
                                "horse racing",
                                "hospitals",
                                "hostage crisis",
                                "hostage deal",
                                "hot 100",
                                "Hot Dog Eating Contest",
                                "hotdog",
                                "Hotspur",
                                "Hotstuff",
                                "House Elections",
                                "house of representatives",
                                "House Races",
                                "Housing",
                                "Houston",
                                "Houston Rockets",
                                "houston texans",
                                "houthi",
                                "Houthis",
                                "Houtis",
                                "hovde",
                                "hoyt",
                                "HPE",
                                "HPQ",
                                "HSBC Championships",
                                "HSI",
                                "HTZ",
                                "HUBS",
                                "Huddle",
                                "Hulk Hogan",
                                "human implant",
                                "human trafficking",
                                "humanitarian pause",
                                "Hungarian",
                                "Hungary Election",
                                "hunger games: boss",
                                "Hunter Biden",
                                "huobi",
                                "hurricane",
                                "Hurricanes",
                                "Hurts",
                                "hush money",
                                "Hustler Casino Live",
                                "Hylo",
                                "hype",
                                "i'm just ken",
                                "ian miles cheong",
                                "Ian Nepomnichtchi",
                                "IART",
                                "iberia",
                                "IBGE",
                                "IBKR",
                                "icahn",
                                "ICC",
                                "icc ",
                                "ICC World Test Championship",
                                "ICE",
                                "ice hockey",
                                "ice spice",
                                "Iceaman",
                                "iceland",
                                "Iceman",
                                "ICUI",
                                "idaho",
                                "idaho caucus",
                                "Idaho Midterm",
                                "Idaho Primary",
                                "identity",
                                "identity verification",
                                "idOS",
                                "IEEPA",
                                "IEM Cologne",
                                "IEM Rio",
                                "IEM Rio 2026",
                                "IEP",
                                "IF Elfsborg",
                                "iggy",
                                "igor matovič",
                                "IHRT",
                                "ILA",
                                "Illinois",
                                "Illinois Primaries",
                                "Illinois Primary",
                                "immunefi",
                                "impeach",
                                "imran khan",
                                "In vitro",
                                "Inauguration",
                                "inauguration for trump",
                                "income predictions",
                                "independence",
                                "India",
                                "India-Pakistan",
                                "Indian Election",
                                "Indian Elections",
                                "Indian Premier League",
                                "Indian Super League",
                                "Indiana",
                                "Indiana Midterm",
                                "Indiana Primary",
                                "Indianapolis 500",
                                "indianapolis colts",
                                "Indicies",
                                "Indonesia",
                                "Infinex",
                                "Influenza",
                                "Infrared",
                                "Infrastructure",
                                "INFY",
                                "initial jobless claims",
                                "insolvency",
                                "INTC",
                                "integrity",
                                "Intel",
                                "intelligence",
                                "inter milan",
                                "interest",
                                "interest rates",
                                "International",
                                "international affairs",
                                "international aid",
                                "international competitions",
                                "International Development",
                                "international law",
                                "International League T20",
                                "international politics",
                                "international relations",
                                "international travel",
                                "internet traffic",
                                "intervention",
                                "interview",
                                "interviews",
                                "intial jobless claims",
                                "Intl. Soccer",
                                "INTU",
                                "Invade",
                                "invasion",
                                "Investec Champions Cup",
                                "investing",
                                "investment",
                                "investments",
                                "invitational",
                                "IONQ",
                                "IOT",
                                "Iowa",
                                "iowa caucus",
                                "Iowa Primary",
                                "Iowa State",
                                "IPCA",
                                "IPL",
                                "IPO",
                                "IPOs",
                                "Ipswich Town",
                                "Iran",
                                "Iran Ceasefire",
                                "Iran Offensive Strikes",
                                "Iran Regime",
                                "iraq",
                                "Ireland",
                                "Irish",
                                "Island",
                                "Israel",
                                "israel strike iran",
                                "Issaac Guerendo",
                                "istanbul",
                                "it never went away",
                                "Italian",
                                "ITF",
                                "ivan korčok",
                                "ivy league",
                                "Ivy League Antisemitism",
                                "IVZ",
                                "j lo",
                                "jacksonville jaguars",
                                "Jadarian Price",
                                "Jalen Milroe",
                                "jalisco",
                                "Jalisco Cartel",
                                "Jalisco New Generation Cartel",
                                "Jamaica",
                                "janelle monae",
                                "january 6",
                                "Japan",
                                "Japan B League",
                                "Japan J League",
                                "Jason Tatum",
                                "Jay Jones",
                                "jayden daniels",
                                "Jayhawks",
                                "Jayson Tatum",
                                "jazz",
                                "JD",
                                "Jeanty",
                                "JEF",
                                "Jeff Nadu",
                                "Jeffrey",
                                "jeffrey wright",
                                "jelly roll",
                                "Jeremiyah Love",
                                "Jerry After Dark",
                                "jesse pollak",
                                "jewels",
                                "Jews",
                                "JFK Files",
                                "jill",
                                "Jill Biden",
                                "jill stein",
                                "jim",
                                "jim cramer",
                                "Jimmy",
                                "Jinan",
                                "jizz",
                                "JMU",
                                "JNJ",
                                "Joaquin Buckley",
                                "jobs",
                                "Jockey Club Gold Cup",
                                "jodie foster",
                                "Joe Biden",
                                "Joe Burrow",
                                "Joe Pyfer",
                                "john fetterman",
                                "john mcafee",
                                "johnson",
                                "joker 2",
                                "Jokic",
                                "jon batiste",
                                "Jon Rahm",
                                "Jordan",
                                "Jordan Spieth",
                                "Jordyn Tyson",
                                "Josh Allen",
                                "josh emmett",
                                "josh giddey",
                                "Josh Stein",
                                "Joy Taylor",
                                "JPAFootball",
                                "JPM",
                                "JPM Sex Scandal",
                                "jpow",
                                "JRE",
                                "jto",
                                "Juan Soto",
                                "Judge",
                                "Judy Shelton",
                                "Julani",
                                "julianna stratton",
                                "July 1",
                                "July 4",
                                "Jungleman",
                                "jury duty",
                                "justice",
                                "Justin",
                                "Justin Bieber",
                                "justin fields",
                                "Justin Herbert",
                                "justine triet",
                                "Juventus",
                                "kabul",
                                "kaine",
                                "Kamala",
                                "Kamala Endorsements",
                                "kamala harris",
                                "kamara",
                                "kamino",
                                "Kansas",
                                "Kansas Primary",
                                "Kansas State",
                                "Kanye",
                                "kanye west",
                                "karate",
                                "karate combat",
                                "kari lake",
                                "Karmelo Anthony",
                                "Kash Patel",
                                "Katana",
                                "kate middleton",
                                "katie britt",
                                "katie porter",
                                "Kayne",
                                "KBL",
                                "KC",
                                "KC Concepcion",
                                "keir",
                                "keith gill",
                                "kelce",
                                "Kelp",
                                "Kemi Badenoch",
                                "Kendall",
                                "Kennedy",
                                "kentucky",
                                "Kentucky Midterm",
                                "Kenyon Sadiq",
                                "kerch",
                                "kevin mccarthy",
                                "Kevin Warsh",
                                "KEY",
                                "Keys",
                                "KFY",
                                "khafare",
                                "Khafre",
                                "khalifa sall",
                                "Khamenei",
                                "Khamzat Chimaev",
                                "Khanna",
                                "KHC",
                                "KHL",
                                "kick",
                                "killers of the flower moon",
                                "Kimbo Slice Jr.",
                                "Kimi",
                                "kimmel",
                                "Kinetiq",
                                "King Cup",
                                "king of bahrain",
                                "kippah",
                                "klobuchar",
                                "KMX",
                                "knicks",
                                "Knights",
                                "Knockdown",
                                "Knockouts",
                                "KNVB Beker",
                                "Korea",
                                "korean teams",
                                "Kouzounas",
                                "KPI",
                                "KPIs",
                                "Kpop",
                                "kraken",
                                "KRG",
                                "krishnamoorthi",
                                "kristen foxen",
                                "kristi noem",
                                "KSA",
                                "KSS",
                                "Kuala Lampur",
                                "kunce",
                                "Kurdish",
                                "Kurdistan",
                                "Kurdistan Regional Government",
                                "Kurds",
                                "kursk",
                                "kwon",
                                "kyle davies",
                                "Kyren Lacy",
                                "Kyrie Irving",
                                "LA",
                                "lab leak",
                                "labor market",
                                "labor statistics",
                                "Lacrosse",
                                "Ladder match",
                                "Lagos",
                                "lai ching-te",
                                "lake",
                                "lakers",
                                "Lalit Modi",
                                "Lamine Yamal",
                                "lana del rey",
                                "Lance Stroll",
                                "Landing",
                                "Lanka Premier League",
                                "laphonza butler",
                                "Larry Ellison",
                                "larry sukernik",
                                "Las Vegas",
                                "las vegas raiders",
                                "launch",
                                "launch events",
                                "launches",
                                "law",
                                "law enforcement",
                                "lawsuit",
                                "lawsuits",
                                "layerzero",
                                "layoff",
                                "lazio",
                                "leabnon",
                                "leadership",
                                "league of legends",
                                "League One",
                                "League Two",
                                "leavitt",
                                "Lebanon",
                                "Lebron",
                                "LEC",
                                "ledger",
                                "Leeds United",
                                "legal",
                                "legal cases",
                                "legal documents",
                                "legal issues",
                                "legal proceedings",
                                "legal settlement",
                                "Leganes",
                                "Leicester City",
                                "LenaThePlug",
                                "leo",
                                "Lexus Eastbourne Open",
                                "Leyton Orient",
                                "lgbtq+",
                                "lgbtq+ issues",
                                "lgbtq+ rights",
                                "LH",
                                "Liam Gallagher",
                                "Liberals",
                                "Liberation Day Tariffs",
                                "Liberty",
                                "Liga MX",
                                "Liga Nacional Guatemala",
                                "Liga Portugal",
                                "Liga Promerica",
                                "Lighter",
                                "Lightning",
                                "liliy phillips",
                                "Lille",
                                "Lily Phillips",
                                "linda yaccarino",
                                "linea",
                                "linguistics",
                                "Lions",
                                "liquefied",
                                "Liquid",
                                "list",
                                "lito.eth",
                                "Little League",
                                "LIV Golf",
                                "Livestream",
                                "llm",
                                "LLWS",
                                "LNB",
                                "LNG",
                                "lockdown",
                                "Lodon",
                                "logan paul",
                                "lol worlds",
                                "London",
                                "Lonzo Ball",
                                "Loopscale",
                                "Lorna Hajdini",
                                "Los Angeles",
                                "Los Angeles Lakers",
                                "LOSC",
                                "Louisiana Primary",
                                "love",
                                "LOW",
                                "LSD",
                                "LSU",
                                "LTC",
                                "lucas kunce",
                                "Lucknow",
                                "Ludogorets",
                                "Luigi Mangione",
                                "luis parada",
                                "lukashenko",
                                "LULU",
                                "lutnick",
                                "luxury goods",
                                "LYFT",
                                "LZB",
                                "M",
                                "M&A",
                                "MA",
                                "Maccabi TLV",
                                "Machine",
                                "macro",
                                "Macro Election 2",
                                "Macro Graph",
                                "Macro Indicators",
                                "Macro Inflation",
                                "Macro Jobs",
                                "Macro Single",
                                "Macro Unemployment",
                                "mad max saga",
                                "madison sheahan",
                                "Madrid",
                                "maduro",
                                "maersk",
                                "mag 7",
                                "Mag7",
                                "MAGA",
                                "magazine",
                                "magic",
                                "Magnus",
                                "magnus carlsen",
                                "magny",
                                "mahammed dionne",
                                "Mahomes",
                                "mail in",
                                "Main Election",
                                "Main Elections",
                                "maine",
                                "Maine Primary",
                                "Major",
                                "Major Championships",
                                "Major League Cricket",
                                "Makai Lemon",
                                "make up",
                                "Makina",
                                "male",
                                "Mallorca",
                                "Mallorca Championships",
                                "Malmo",
                                "Malmo FF",
                                "malott",
                                "Mamdani",
                                "Mammoth",
                                "man of the match",
                                "man united",
                                "man utd",
                                "manager",
                                "Manchester City",
                                "manchester united",
                                "manchin",
                                "mangione",
                                "Manila",
                                "manuel flores",
                                "map",
                                "MARA",
                                "maratime",
                                "March 3 Primaries",
                                "march meeting",
                                "marco",
                                "marco rubio",
                                "marcos",
                                "marcus",
                                "marcus robinson",
                                "Margin of Victory",
                                "Maria Machado",
                                "marianne williamson",
                                "Mariano",
                                "Marijuana",
                                "maritime transport",
                                "Mark Carney",
                                "mark gonzalez",
                                "mark ruffalo",
                                "market capitalization",
                                "market launch",
                                "market prediction",
                                "market predictions",
                                "market rankings",
                                "market trends",
                                "markets",
                                "markt cap",
                                "Markwayne Mullin",
                                "marriage",
                                "MARU",
                                "marvin harrison jr.",
                                "Maryland",
                                "Maryland Midterm",
                                "Maryland Primary",
                                "mascot",
                                "masculitnity",
                                "Mass Deportation",
                                "massachusetts",
                                "Massachusetts Midterm",
                                "Massachusetts Primary",
                                "massachussetts",
                                "massachussetts primary",
                                "massie",
                                "Masters",
                                "matchroomboxing",
                                "Math",
                                "mathematics",
                                "Matisse",
                                "matt dolan",
                                "matt gaetz",
                                "matt parker",
                                "Matthew Livelsberger",
                                "Matty Betss",
                                "MAU",
                                "mavericks",
                                "mavs",
                                "may december",
                                "mayc",
                                "mayor",
                                "Mayoral Elections",
                                "mayweather",
                                "MBWM",
                                "mcap",
                                "mccormick",
                                "McCray",
                                "mcdermott",
                                "mcdonald's",
                                "mcgregor",
                                "MDB",
                                "ME-1",
                                "ME1",
                                "ME2",
                                "Mecklenburg-Vorpommern",
                                "meek mill",
                                "melania",
                                "Melissa Hortman",
                                "Meloni",
                                "meltem demirors",
                                "Memecoins",
                                "Memes",
                                "Memorial Tournament",
                                "Merab Dvalishvili",
                                "merge",
                                "merger",
                                "mergers and acquisitions",
                                "meri gomez",
                                "merz",
                                "Meta vs FTC",
                                "Metadao",
                                "metals",
                                "Metaverse",
                                "Mets",
                                "Mexico Election",
                                "Mezo",
                                "mgiuelpf",
                                "MGM",
                                "Miami (OH)",
                                "Miami Open",
                                "micahel saylor",
                                "Michael Vick",
                                "michelle obama",
                                "michigain",
                                "Michigan State",
                                "michigan wolverines",
                                "MicroStrategy",
                                "Middle East",
                                "midnights",
                                "Midtjylland",
                                "migrant families",
                                "Miguel Diaz-Canel",
                                "mika aaltola",
                                "Mike Breen",
                                "Mike Evans",
                                "Mike Johnson",
                                "mike lee",
                                "mike pence",
                                "Mike Perry",
                                "mike pompeo",
                                "mike rogers",
                                "Mike Tomlin",
                                "Mike Tyson",
                                "milady",
                                "Milan",
                                "milei",
                                "military",
                                "military invasion",
                                "Military Strikes",
                                "Miller Moss",
                                "Miller Time",
                                "Million Dollar Game",
                                "Millwall",
                                "milton",
                                "Milwaukee Bucks",
                                "Minh",
                                "Minneapolis",
                                "Minneosta",
                                "minnesota",
                                "Minnesota Midterm",
                                "Minnesota Twins",
                                "minnesota vikings",
                                "Minnesota Wild",
                                "missile",
                                "Mississippi Primary",
                                "Missouri",
                                "missouri caucus",
                                "Missouri Midterm",
                                "mitch mcconnell",
                                "mixed martial arts",
                                "MKTX",
                                "MLB",
                                "MLB All-Star Game",
                                "MLB ASG",
                                "MLB Draft",
                                "MLB Playoffs",
                                "mmERCH",
                                "MMM",
                                "MN",
                                "MNF",
                                "MNST",
                                "Mo Salah",
                                "model",
                                "moderator",
                                "mog",
                                "MOG.A",
                                "Mojtaba",
                                "mold",
                                "moldova",
                                "Moldova Election",
                                "Monday",
                                "Monero",
                                "monetary policy",
                                "Monsanto vs. Durnell",
                                "Montenegro",
                                "Monthly Awards",
                                "moon landing",
                                "Moonshot",
                                "more light",
                                "moreno",
                                "morgan",
                                "Morocco Botola Pro",
                                "mortgage",
                                "Moscow",
                                "mossad",
                                "most valuable player",
                                "motm",
                                "MotoGP",
                                "Motorcycle",
                                "motorsports",
                                "Mountain West",
                                "movie gross",
                                "Movies",
                                "mozambique",
                                "mr beast",
                                "Mr. Beast",
                                "MrBeast",
                                "MRK",
                                "MRX",
                                "MS",
                                "MSCI",
                                "MSTR",
                                "Mt. Etna",
                                "Mt. Vesuvius",
                                "MTG",
                                "MTN",
                                "MU",
                                "mucarsel-powell",
                                "Mug shot",
                                "mullin",
                                "Mungo",
                                "municipal council",
                                "Murati",
                                "Museum",
                                "Mushrooms",
                                "Music",
                                "music industry",
                                "musk",
                                "mustangs",
                                "MX",
                                "Mykhailo Mudryk",
                                "Myles Garrett",
                                "Naitons League",
                                "Nancy Pelosi",
                                "nasa",
                                "nate",
                                "nate silve",
                                "Nathan's Famous Hot Dog",
                                "Nathan's Hot Dog Contest",
                                "National Anthem/Coin Toss",
                                "National Bureau of Economic Research",
                                "national football conference",
                                "National League",
                                "National Public Radio",
                                "NATO",
                                "Natural Disaster",
                                "natural gas",
                                "Naval",
                                "Navy",
                                "nawaz sharif",
                                "nayib bukele",
                                "nazi",
                                "NBA",
                                "NBA All Star Weekend",
                                "NBA Champion",
                                "NBA Draft",
                                "NBA Finals",
                                "NBA Gambling Scandal",
                                "NBA Playoffs",
                                "NBL",
                                "NC",
                                "NCAA Basketball",
                                "NCAA CBB",
                                "NCAA tournament",
                                "NCAAW",
                                "NE-1",
                                "NE1",
                                "Nebraska",
                                "Nebraska Midterm",
                                "Nebraska Primary",
                                "nebula3",
                                "NEH",
                                "Nelk",
                                "Nelk Boys",
                                "Nepal Election",
                                "Nest",
                                "NET",
                                "netanyahu",
                                "Netherlands",
                                "nets",
                                "neuralink",
                                "Neutrl",
                                "Nevada Midterm",
                                "new artists",
                                "new england patriots",
                                "New Hampshire",
                                "New Hampshire Primary",
                                "New Jersey",
                                "New Jersey Midterm",
                                "New Mexico",
                                "New Mexico Midterm",
                                "New Mexico Primary",
                                "New Orleans Escapees",
                                "New Pope",
                                "New York",
                                "New York City",
                                "New York Islanders",
                                "New York Knicks",
                                "New York Midterm",
                                "New York Primary",
                                "New Zealand",
                                "New Zealand Election",
                                "newcastle",
                                "news",
                                "News Stories",
                                "News Story",
                                "NFC",
                                "NFC East",
                                "nfc north",
                                "NFC South",
                                "NFC West",
                                "NFL",
                                "NFL Draft",
                                "NFL Preseason 2025",
                                "NFL Week 2",
                                "NFL Week 6",
                                "NFL Week 7",
                                "NFLRA",
                                "NFLX",
                                "NFRI",
                                "nft",
                                "NHL",
                                "Nice",
                                "nico Harrison",
                                "nicolas cage",
                                "Nigeria",
                                "NIK",
                                "nik airball",
                                "Nike Liga",
                                "NIL",
                                "NJ",
                                "NJ Governor",
                                "NKE",
                                "NL",
                                "NL Central",
                                "NL east",
                                "nl MVP",
                                "NL West",
                                "NLCS",
                                "NLDS",
                                "NMAX",
                                "No-hitters",
                                "No-no",
                                "noah kahan",
                                "nobel",
                                "Nobel Peace Prize",
                                "Noble",
                                "Noel Gallagher",
                                "nominate",
                                "nonfarm",
                                "Nordea Open",
                                "Norris",
                                "North Atlantic Treaty",
                                "North Carolina Midterm",
                                "North Carolina Primary",
                                "North Dakota Midterm",
                                "North Dakota Primary",
                                "North End",
                                "North Korea",
                                "North Texas",
                                "Norway Eliteserien",
                                "not LaLiga",
                                "Notre Dame",
                                "Nov 4 Elections",
                                "november",
                                "NR",
                                "NRA",
                                "NRFI",
                                "Nuclear",
                                "Nuclear Non-Proliferation Treaty",
                                "nuclear technology",
                                "nuclear weapons",
                                "nuggets",
                                "nuke",
                                "nuzzi",
                                "NVDA",
                                "NVTS",
                                "NWSA",
                                "NWSL",
                                "NXPI",
                                "NY Special Election",
                                "nyc",
                                "NYC Mayor",
                                "NYE",
                                "NYM",
                                "nyt",
                                "O'Donnell",
                                "O'Malley",
                                "o1",
                                "Oakland",
                                "Oba Femi",
                                "obama",
                                "Obj",
                                "october suprise",
                                "Octra",
                                "odysseus lander",
                                "og anunoby",
                                "OG shoots",
                                "Ohio Midterm",
                                "Ohio Primaries",
                                "Ohio Primary",
                                "Ohtani",
                                "Oil",
                                "oil industry",
                                "oil ship",
                                "Oilers",
                                "Oklahoma Primary",
                                "OKLO",
                                "OKTA",
                                "Ole Miss",
                                "oleksandr usyk",
                                "olivia",
                                "Olivia Holzmacher",
                                "Olympic Athletics",
                                "Olympic Basketball",
                                "Olympics",
                                "Olympics Athletics",
                                "Olympics Track",
                                "Omar Cooper Jr.",
                                "Omar Marmoush",
                                "Omega European Masters",
                                "one direction",
                                "OneFootball",
                                "online interaction",
                                "onlyfans",
                                "Ontario",
                                "open network",
                                "OpenAI",
                                "OpenAI vs Elon",
                                "opinion",
                                "oppenheimer",
                                "Oracle",
                                "Orban",
                                "ORCL",
                                "Oregon",
                                "Oregon Midterm",
                                "Oregon St",
                                "Orthodox",
                                "OS",
                                "osborne",
                                "Oscars",
                                "Ostium",
                                "OSU",
                                "OTLY",
                                "oust",
                                "Out",
                                "outage",
                                "outages",
                                "outer space",
                                "Over",
                                "Over/Under",
                                "Overnight",
                                "Overs",
                                "Owlto",
                                "ownership",
                                "OXY",
                                "PA",
                                "paavo vayrynen",
                                "pac",
                                "PAC12",
                                "PAC12AFTERDARK",
                                "pacers",
                                "Pacific",
                                "packers",
                                "packy mccormick",
                                "packym",
                                "pacquiao",
                                "PActo Historico",
                                "paddy",
                                "Pakistan Super League",
                                "Pakistan T20",
                                "palantir",
                                "palestine",
                                "Palestine Protests",
                                "palestinian",
                                "palestinian authority",
                                "palmer lucky",
                                "pam bondi",
                                "Pandemics",
                                "PAOK",
                                "Paraguay",
                                "Paralympics",
                                "Parcl",
                                "pardon",
                                "Parent For Derivative",
                                "Paris",
                                "Paris Election",
                                "Paris Saint-Germain",
                                "Parlays",
                                "Partido Popular",
                                "parties",
                                "party switching",
                                "Patek",
                                "patek index",
                                "patrick mahomes",
                                "Patrik Antonius",
                                "paul giamatti",
                                "Paul vs. Chavez Jr.",
                                "Paul vs. Tyson",
                                "pavel",
                                "Paxton",
                                "payouts",
                                "payroll",
                                "PAYX",
                                "PCC",
                                "PCG",
                                "PD",
                                "peace",
                                "peace deals",
                                "peace negotiations",
                                "peace talks",
                                "Peach Bowl",
                                "Peak",
                                "pedophile",
                                "pedro pascal",
                                "PEDs",
                                "Pelosi",
                                "Penalties",
                                "Pengu",
                                "Penguin",
                                "Penguins",
                                "pennant",
                                "people",
                                "people power party",
                                "People's Power Party",
                                "PEptron",
                                "perfect bracket",
                                "Perfect game",
                                "Perfect Timing",
                                "Perle Labs",
                                "Perplexity",
                                "person of the year",
                                "personal life",
                                "Peru Election",
                                "peruvian",
                                "pervert",
                                "Petal",
                                "pete buttigieg",
                                "Peter Magyar",
                                "peter pellegrini",
                                "peter thiel",
                                "petroleum",
                                "PewDiePie",
                                "PFL",
                                "PGA Championship",
                                "PGL Astana 2026",
                                "PH",
                                "pharma",
                                "PHEIC",
                                "Philadelphia",
                                "Philadelphia 76ers",
                                "philadelphia eagles",
                                "Philly",
                                "Phoenix",
                                "Phone",
                                "physics",
                                "piastri",
                                "Pickleball",
                                "Pierre",
                                "pink",
                                "PINS",
                                "pipe line",
                                "PIPR",
                                "Pitt",
                                "pittsburgh steelers",
                                "Planes",
                                "Planet",
                                "PLAY",
                                "Play Store",
                                "Play-in",
                                "player of the match",
                                "Player of the Month",
                                "Player Props",
                                "player selection",
                                "Playoff Series",
                                "playoffs",
                                "PLBY",
                                "PLL",
                                "PLTR",
                                "Plunket Shield",
                                "pmqs",
                                "PNC",
                                "poilievre",
                                "Points",
                                "points lead. tags: 2024 presidential election",
                                "Pokemon",
                                "Poker warning",
                                "pokers",
                                "Poland",
                                "Politics",
                                "poll",
                                "pollling",
                                "Pool B",
                                "pool c",
                                "Pool D",
                                "poor things",
                                "pope",
                                "pope francis",
                                "Pope Leo XIV",
                                "Popular Vote",
                                "popularity",
                                "population",
                                "porn star",
                                "port",
                                "port of baltimore",
                                "portnoy",
                                "porto",
                                "ports",
                                "Portugal",
                                "Portugal Election",
                                "Post",
                                "Pot",
                                "potm",
                                "potusbanner",
                                "poty",
                                "powell",
                                "Power",
                                "POWL",
                                "PP",
                                "PPA",
                                "ppeline",
                                "Prasanna",
                                "Pre-Market",
                                "prediction market",
                                "predictions",
                                "pregnant",
                                "Premier Lacrosse League",
                                "Preseason",
                                "President",
                                "presidente",
                                "presidential",
                                "Presidential Debate",
                                "presidential election 2023",
                                "presidential election 2024",
                                "presidential nomination",
                                "presidential race",
                                "Preston",
                                "Preston North End",
                                "price prediction",
                                "pricing",
                                "Primaries",
                                "primary",
                                "primary ballot",
                                "primary debate",
                                "primary elections",
                                "prime minister",
                                "Printr",
                                "prison",
                                "privacy issue",
                                "prize",
                                "prize money",
                                "Pro A",
                                "Probable",
                                "Procreate Pocket",
                                "product launch",
                                "product marekt fit",
                                "Professional Golf",
                                "Professional wrestling",
                                "profit",
                                "profits",
                                "prograis",
                                "Proof of citizenship",
                                "prop",
                                "proposition",
                                "props",
                                "protest",
                                "Prva Liga",
                                "psg",
                                "Psilocybin",
                                "PSKY",
                                "PSOE",
                                "psv",
                                "PTON",
                                "public opinion",
                                "public policy",
                                "public release",
                                "Pudgy",
                                "pudgy penguins",
                                "puerto Vallarta",
                                "puffer",
                                "Puffpaw",
                                "pull out",
                                "PUMP",
                                "Punts",
                                "PUP",
                                "Purdue",
                                "purges",
                                "Pusha T",
                                "putin",
                                "pvv",
                                "PXLW",
                                "PYPL",
                                "PZZA",
                                "q2 2024",
                                "q3",
                                "q4",
                                "QB",
                                "QBs",
                                "QFEX",
                                "Qingdao",
                                "QQQ",
                                "quade",
                                "Qualification",
                                "Qualifying",
                                "quantative tight",
                                "quantum computer",
                                "quarantine",
                                "Quarterly",
                                "quarterly reporting",
                                "quatar",
                                "Quebec",
                                "Queen Anne Stakes",
                                "question 6",
                                "rabios",
                                "races",
                                "racketeering conspiracy",
                                "RAF",
                                "raja",
                                "ramadan",
                                "ramone",
                                "rampage",
                                "Ramzan Kadyrov",
                                "Randy Orton",
                                "rankings",
                                "Ransomware",
                                "Rap",
                                "Rapid chess",
                                "raptors",
                                "Rate",
                                "rates",
                                "rating",
                                "ravens",
                                "Ravens vs Bills",
                                "ravis kelce",
                                "Razorbacks",
                                "RBA",
                                "RBI",
                                "RBLX",
                                "RBNZ",
                                "RBRK",
                                "RCL",
                                "RDDT",
                                "real clear",
                                "real madrid",
                                "real sociedad",
                                "realcelar",
                                "RealClear",
                                "Reason and Justice",
                                "rebels",
                                "rebounds",
                                "recall",
                                "recession",
                                "reconciliation",
                                "record of the year",
                                "record temperatures",
                                "records",
                                "Recurring",
                                "Red Bull Racing",
                                "red card",
                                "red cards",
                                "Red River",
                                "red sea",
                                "Red Star Belgrade",
                                "redbull",
                                "reddit",
                                "Reefer",
                                "referendums",
                                "referendums midterms",
                                "refinery",
                                "Reform",
                                "refugees",
                                "Regis Prograis",
                                "regulation",
                                "regulatory affairs",
                                "regulatory news",
                                "relationships",
                                "Relay",
                                "release date",
                                "release dates",
                                "Relegation",
                                "remove",
                                "Renoir",
                                "report",
                                "repredsentative",
                                "republican",
                                "republican caucus",
                                "republican national convention",
                                "republican nomination",
                                "republican party",
                                "republican primaries",
                                "Republican Primary",
                                "republicans",
                                "Research",
                                "resign",
                                "resignation",
                                "resignations",
                                "respiratory illness",
                                "revenue",
                                "Rewards 20, 4.5, 50",
                                "Rewards 300 4.5 50",
                                "Rewards 50, 4.5, 100",
                                "Rewards Automation 50 4.5 50",
                                "Reya",
                                "Reza Pahlavi",
                                "RFK",
                                "RFS",
                                "Rhea Ripley",
                                "rhineland-palatinate",
                                "Rhode Island Midterm",
                                "Rhode Island Primary",
                                "rifle",
                                "ring of fire",
                                "riot",
                                "Ripple",
                                "Rippling",
                                "RL",
                                "RN",
                                "Ro Khanna",
                                "Rob Pelinka",
                                "Robert",
                                "robert de niro",
                                "robert downey jr.",
                                "robert Fico",
                                "Robert Kennedy Jr.",
                                "Robinhood",
                                "robinson",
                                "robot dreams",
                                "robotaxi",
                                "rocket",
                                "rocket launch",
                                "rockets",
                                "rogers",
                                "ROKU",
                                "Roland Garros",
                                "roland gutierrez",
                                "rolando",
                                "Rolex index",
                                "Roll",
                                "Roma",
                                "Romania",
                                "Rome",
                                "Ron Paul",
                                "ronna mcdaniel",
                                "rookie",
                                "Rookie of the Year",
                                "roon",
                                "Rory",
                                "Rory McIlroy",
                                "rosen",
                                "Ross",
                                "Roster moves",
                                "Rotterdam",
                                "Rousey",
                                "Rousey vs. Carano",
                                "Royal Ascot",
                                "RSP",
                                "Rublev",
                                "Rueben Bain Jr.",
                                "Rugby Champions Cup",
                                "Rugby Premiership",
                                "Rugby Top 14",
                                "RUM",
                                "rumor",
                                "Rumors",
                                "Run",
                                "running",
                                "Running Back",
                                "Russ",
                                "Russel Wilson",
                                "Russell",
                                "russell wilson",
                                "Russian Premier League",
                                "RWA",
                                "ryan gosling",
                                "Ryan Petersen",
                                "Ryder Cup",
                                "S&P 500",
                                "SA20",
                                "Sabalenka",
                                "Sachsen-Anhalt",
                                "Sacramento Kings",
                                "saga",
                                "Sailing",
                                "SAINT",
                                "saints",
                                "Sainz",
                                "saks",
                                "salah",
                                "sally kornbluth",
                                "Sam",
                                "Sam Bankman-Fried",
                                "sama",
                                "sama altman",
                                "Sami Zayn",
                                "San Diego",
                                "San Diego State",
                                "san francisco",
                                "San Jose Sharks",
                                "San Marino",
                                "Sanae",
                                "sanders",
                                "sanremo",
                                "santa monica",
                                "santos",
                                "Sao Paulo",
                                "sapraicone",
                                "Saquon Barkley",
                                "sarah huckabee sanders",
                                "satellite internet",
                                "satoshi nakamoto",
                                "saudi",
                                "saudi aramco",
                                "saudi club",
                                "save act",
                                "Saxony-Anhalt",
                                "SBF",
                                "SBUX",
                                "scandal",
                                "scandals",
                                "Scheffler",
                                "scie",
                                "scorigami",
                                "scoring",
                                "scott",
                                "Scottie Scheffler",
                                "Scottish Cup",
                                "Scottish Premiership",
                                "screenplay",
                                "SDH100RT",
                                "sea",
                                "seahawks",
                                "Sean",
                                "sean combs",
                                "Sean O'Malley",
                                "sean patrick maloney",
                                "Sean Strickland",
                                "season 3",
                                "season finale",
                                "seattle seahawks",
                                "sec",
                                "second",
                                "second quarter",
                                "secretary",
                                "Secretary of Homeland Security",
                                "secretary of labor",
                                "security",
                                "seduce",
                                "seeker",
                                "seguro",
                                "self driving",
                                "semen",
                                "Senate",
                                "Senate midterms",
                                "Senate Primary",
                                "senates",
                                "Senators",
                                "senegal",
                                "sentate",
                                "Sentient",
                                "Sentio",
                                "September 5",
                                "sergio massa",
                                "Seria A",
                                "Serie A",
                                "Serie B",
                                "Series",
                                "Series Length",
                                "Series Winner",
                                "settlements",
                                "Sex Tape",
                                "sex trafficking",
                                "sexual misconduct",
                                "sexy",
                                "SG",
                                "Shadeur",
                                "Shai Gilgeous-Alexander",
                                "SHAK",
                                "Shaktar Donetsk",
                                "shakur",
                                "Shakur Stevenson",
                                "Shanghai",
                                "Shanghai Rolex Masters",
                                "Shaudeur",
                                "Sheffield Shield",
                                "sheikh hasina",
                                "shein",
                                "Shenzhen",
                                "sherrod brown",
                                "shipping",
                                "ships",
                                "SHL",
                                "shooter",
                                "SHOP",
                                "shutdown",
                                "Sides",
                                "signed",
                                "Silver",
                                "Simulate",
                                "Sinai",
                                "sinaloa Cartel",
                                "sinema",
                                "Singapur",
                                "Siri",
                                "Six Kings",
                                "Skip Bayless",
                                "skr",
                                "Skyscraper Climb",
                                "slerf",
                                "Slingshot",
                                "Sliwa",
                                "slotkin",
                                "Slovak Republic",
                                "Slovan Bratislava",
                                "Slovenia",
                                "smart home",
                                "smotrich",
                                "Snap election",
                                "SNEX",
                                "Snooker Championship",
                                "SNOW",
                                "snowfall",
                                "social media influencer",
                                "social networking",
                                "Social Policy",
                                "socks",
                                "SOFR",
                                "sol",
                                "Sol Raffle",
                                "Solana",
                                "solana network",
                                "solar flare",
                                "Solomon",
                                "Solstice",
                                "Somali",
                                "Somaliland",
                                "song",
                                "song of the year",
                                "songs",
                                "Sonny Styles",
                                "SONO",
                                "sony",
                                "sora",
                                "sotheby's",
                                "SOUN",
                                "South Africa",
                                "South Australia",
                                "South Carolina",
                                "South Carolina Primary",
                                "South Dakota Midterm",
                                "South Dakota Primary",
                                "South Korea",
                                "South Korea Election",
                                "Southern Poverty Law Center",
                                "Sovereignty",
                                "Space",
                                "space exploration",
                                "space travel",
                                "Spain",
                                "Spain national team",
                                "Spanish Super Cup",
                                "spar",
                                "SPCE",
                                "speak",
                                "Speaker",
                                "Speaker Election",
                                "special",
                                "Special Elections",
                                "Special Olympics",
                                "specil election",
                                "speech",
                                "speech analysis",
                                "speech patterns",
                                "Speed",
                                "Speed + Kai",
                                "Spencer Fano",
                                "SPGI",
                                "spider-man",
                                "Spit on that thang",
                                "SPLC",
                                "split",
                                "split ticket",
                                "sport",
                                "Sports",
                                "SPOT",
                                "spotify",
                                "spurs",
                                "SPY",
                                "St Penn",
                                "Stablecoins",
                                "staked",
                                "Stanley Cup",
                                "Stanton",
                                "star spangled banner",
                                "starknet",
                                "starlink",
                                "Starmer",
                                "stars and stripes",
                                "starship",
                                "startups",
                                "state of the union",
                                "State of Union",
                                "State Presidential Election",
                                "statistics",
                                "steelers",
                                "stein",
                                "Steph",
                                "Stephen Curry",
                                "stephen miran",
                                "sterling k. brown",
                                "steve grove",
                                "steven keough",
                                "stock",
                                "stock exchange",
                                "stock exchnage",
                                "stock market",
                                "stock trading",
                                "Stoke City",
                                "Stokes Twins",
                                "Stolen bases",
                                "story protocol",
                                "Strategic Bitcoin Reserve",
                                "stratton",
                                "strikes",
                                "Stripe",
                                "strk",
                                "STUB",
                                "Sturm Graz",
                                "submarine",
                                "subscribers",
                                "Subway",
                                "Subway Series",
                                "Sudan",
                                "sue",
                                "Sugar Bowl",
                                "Suit",
                                "sunbelt",
                                "sundar pichai",
                                "suns",
                                "Super Bowl",
                                "Super Bowl LIX",
                                "Super Bowl LIX Specials",
                                "super bowl lviii",
                                "Super Bowl LX",
                                "Super Bowl Props",
                                "Super Bowl TV",
                                "Super Fights",
                                "Super Lig",
                                "Super Rugby Pacific",
                                "Super Smash",
                                "super tuesday",
                                "Superbowl",
                                "Supercup",
                                "Supoer Bowl LIX",
                                "Supreme Court ",
                                "supreme leader",
                                "surf",
                                "Suriname",
                                "Surveillance",
                                "Swalwell",
                                "SWBI",
                                "Sweden",
                                "sweet sixteen",
                                "Swiatek",
                                "swift",
                                "Swimming",
                                "Swing States",
                                "Swiss Open",
                                "switch",
                                "Switzerland",
                                "sydney sweeny",
                                "Syracuse",
                                "sza",
                                "T-Mobile",
                                "T1",
                                "T20",
                                "T20 Blast",
                                "Taca de Portugal",
                                "Taipei",
                                "tairffs",
                                "Taiwan Election",
                                "Takaichi",
                                "takeover",
                                "Talarico",
                                "taliban",
                                "Talk Tuah",
                                "Tamil",
                                "tammy",
                                "Tanner Bibee",
                                "Tanzania",
                                "tape",
                                "Tariff",
                                "Tariffs",
                                "tarriffs",
                                "Tate",
                                "Tatis",
                                "tax cut",
                                "Taxes",
                                "Taylor Swift",
                                "TBPH",
                                "TBPN",
                                "tcs london marathon",
                                "TCU",
                                "TDOC",
                                "Tea Dating Advice",
                                "Team of the Season",
                                "Team Totals",
                                "TeamWater",
                                "tears of the kingdom",
                                "Tech",
                                "tech releases",
                                "technology",
                                "ted cruz",
                                "Tel Aviv",
                                "temp",
                                "Tempo",
                                "tenent",
                                "tenet",
                                "Tennessee Midterm",
                                "Tennis",
                                "tensor",
                                "teofimo",
                                "Teofimo Lopez",
                                "Terra Wortmann",
                                "Terry Rozier",
                                "Test1",
                                "tether",
                                "Texans vs Rams",
                                "texas",
                                "Texas Midterm",
                                "Texas Redistricting",
                                "Texas Senate",
                                "TFC",
                                "TFF Super Kupa",
                                "TFX",
                                "TGT",
                                "Thai",
                                "Thailand Election",
                                "Thanksgiveing",
                                "Thanksgiving",
                                "Thanksgiving Football",
                                "thc",
                                "the bear",
                                "The Block",
                                "the boy and the heron",
                                "the boys",
                                "The Everest",
                                "The Fall Off",
                                "the fire inside",
                                "the hunger games",
                                "the legend of zelda",
                                "The Masters",
                                "The Open",
                                "The Ring",
                                "The Ring 6",
                                "Theo",
                                "thierry tchenko",
                                "third",
                                "third party",
                                "third quarter",
                                "Thomas Dickey",
                                "Threadguy",
                                "Thunberg",
                                "thune",
                                "Tide",
                                "Tiger",
                                "Tiger Woods",
                                "tik tok",
                                "tim ryan",
                                "tim scott",
                                "timberwolves",
                                "Time",
                                "time magazine",
                                "Time POTY",
                                "Timothée Chalamet",
                                "Tinder",
                                "tipping point",
                                "titanic",
                                "titans",
                                "TJX",
                                "TMTG",
                                "TMUS",
                                "Toads",
                                "Today's Olympics",
                                "Today's Sports",
                                "Togi",
                                "token",
                                "Token Launches",
                                "Token Sale",
                                "Token Sales",
                                "Toledo",
                                "Tom Aspinal",
                                "Tom Asprinall",
                                "Tom Brady",
                                "tony snell",
                                "top 10",
                                "top model",
                                "Top Navbar",
                                "Top Netflix",
                                "Top Performer",
                                "Topuria",
                                "Tori",
                                "tornadoes",
                                "Toronto Maple Leafs",
                                "torpedo bat",
                                "torrie",
                                "TOST",
                                "Total",
                                "totals",
                                "Tottenham",
                                "touchdowns",
                                "Tour de France",
                                "tourism",
                                "Tournament",
                                "trade",
                                "trading_axe",
                                "tradition",
                                "traditions",
                                "trail blazers",
                                "trailers",
                                "trans",
                                "transfer window",
                                "transgender",
                                "transit",
                                "Transportation Security Administration",
                                "travel",
                                "Travel Ban",
                                "Travelers Championship",
                                "Travis",
                                "Travis Hunter",
                                "Travis Scott",
                                "Treasury",
                                "TREMP",
                                "Trending Markets",
                                "Trey Hendrickson",
                                "trey stone",
                                "Tria",
                                "trial",
                                "Trick Williams",
                                "Triple Crown",
                                "triple double",
                                "Triples",
                                "tristan tate",
                                "Trojans",
                                "TRON",
                                "troops",
                                "trucker strike",
                                "trudeau",
                                "Trudeau out",
                                "Trump",
                                "Trump 100 Days",
                                "Trump Media",
                                "Trump Presidency",
                                "Trump Trials",
                                "Trump v. casa",
                                "Trump vs Elon",
                                "Trump x al-Sharaa",
                                "Trump x Mamdani",
                                "Trump x Saudi",
                                "Trump-Machado",
                                "Trump-Netanyahu",
                                "Trump-Zelenskyy",
                                "trunout",
                                "truth",
                                "TSEM",
                                "TSLA",
                                "TSM",
                                "TTD",
                                "TTU",
                                "tua",
                                "tuah talk",
                                "tucker carlson",
                                "Tulane",
                                "Tulsi Gabbard",
                                "tunisia",
                                "Turkey",
                                "Turkey BSL",
                                "turn out",
                                "turnout",
                                "TV",
                                "TVL",
                                "TW",
                                "tweet",
                                "Twente",
                                "TXN",
                                "TXRH",
                                "ty pinkins",
                                "tyson fury",
                                "u.s. 2024",
                                "u.s. 2024 elections",
                                "u.s. congress",
                                "u.s. election",
                                "U.S. Politics",
                                "u.s. presidential election 2024",
                                "u.s. supreme court",
                                "U.S. x Iran",
                                "UAL",
                                "uap",
                                "UBER",
                                "UEF Qualifiers",
                                "UEFA",
                                "UEFA Conference League",
                                "UEFA Euro Qualification",
                                "UEFA Europa Conference League",
                                "UEFA Europa League",
                                "UEFA European U21",
                                "UEFA Nations League",
                                "UEFA U21",
                                "UEFA Women's Euro",
                                "UEL",
                                "UFC 308",
                                "UFC 316",
                                "UFC 317",
                                "UFC Fight Night",
                                "UGA",
                                "UHAL.B",
                                "UHC",
                                "UK Elections",
                                "Ukraine Map",
                                "Ukraine Peace Deal",
                                "Ukraine Premier Liha",
                                "UN",
                                "UNC",
                                "Unders",
                                "UNFI",
                                "UNH",
                                "Union Saint-Gilloise",
                                "Union St-Gilloise",
                                "Union St.-Gilloise",
                                "uniswap",
                                "Unit",
                                "Unitas Labs",
                                "United Arab Emirates",
                                "United Kingdome",
                                "United Nations",
                                "United Rugby Championship",
                                "United States Grand Prix",
                                "UnitedHealthcare",
                                "UNP",
                                "unrwa",
                                "UNTY",
                                "Unwell Winter Games",
                                "uruguay",
                                "us",
                                "US Election",
                                "us employment",
                                "us jobs",
                                "us market",
                                "us military",
                                "US News",
                                "US Open",
                                "US Politics",
                                "us presidential election 2024",
                                "USA Election",
                                "USAR",
                                "USBP",
                                "USD",
                                "USD.AI",
                                "USD/KRW",
                                "usdc",
                                "USDCAD",
                                "USDe",
                                "USDJPY",
                                "usdt",
                                "user fees",
                                "users",
                                "usher",
                                "USPS",
                                "Usyk vs. Dubois",
                                "Usyk vs. Fury",
                                "UT",
                                "utah",
                                "vacancy",
                                "val",
                                "Valantis",
                                "Valencia",
                                "Valorant",
                                "valuation",
                                "Valve",
                                "Vance Boelter",
                                "Vancouver Canucks",
                                "Vanderbilt",
                                "vanguard",
                                "vatican",
                                "VEEP",
                                "Vegas",
                                "Vegas Golden Knights",
                                "Venezuela",
                                "Ventuals",
                                "ventura",
                                "Verizon",
                                "vermont",
                                "Verstappen",
                                "Vessel",
                                "VfB",
                                "vice president",
                                "vice president nomination",
                                "vice presidential nomination",
                                "Victor Gyökeres",
                                "victoria monet",
                                "video appearance",
                                "video game",
                                "viewer",
                                "views",
                                "vikings",
                                "Viktoria Plzen",
                                "Vini Jr",
                                "Virginia Attorney General",
                                "Virginia Elections",
                                "Virginia Governor",
                                "virgins",
                                "VIRT",
                                "virus",
                                "visa",
                                "Vitality",
                                "vivek",
                                "vivek ramaswamy",
                                "Vogue",
                                "Volatility",
                                "volcanic eruption",
                                "volcano",
                                "volcanoes",
                                "Volleyball",
                                "VOOI",
                                "vote",
                                "vote against",
                                "vote counting",
                                "voter fraud",
                                "votes",
                                "voting results",
                                "VP Debate",
                                "vp nominee",
                                "VSCO",
                                "VTB United League",
                                "Wales",
                                "Walks",
                                "wallet",
                                "Walz",
                                "war",
                                "Warner Bros",
                                "Warsaw",
                                "Washington Capitals",
                                "Washington Midterm",
                                "Washington St",
                                "watch",
                                "Watson v. Republican National Committe",
                                "WAY",
                                "Waymo",
                                "WB",
                                "WBB",
                                "WC Qualification Africa",
                                "WC Qualification Asia",
                                "WC Qualification Europe",
                                "WC Qualification North America",
                                "WC Qualification Oceania",
                                "WC Qualification South America",
                                "WDAY",
                                "WDFC",
                                "Week 14",
                                "Week 15",
                                "Week 16",
                                "Week 9",
                                "Weekly",
                                "Welch",
                                "Welterweight",
                                "wemby",
                                "WEN",
                                "wesley hunt",
                                "West Bank",
                                "West Virginia Midterm",
                                "Western Kentucky",
                                "wework",
                                "WFC",
                                "Whca",
                                "Which One",
                                "whistleblower",
                                "White house correspondents",
                                "who",
                                "wif sphere",
                                "Wigan Athletic",
                                "Wild",
                                "Wildfire",
                                "wildfirezz",
                                "williams",
                                "Wimbledon",
                                "WING",
                                "Wingbits",
                                "Winnipeg Jets",
                                "winter",
                                "Wireless festival",
                                "Wisconisin",
                                "wisconsin",
                                "Wisconsin Midterm",
                                "wish",
                                "WIX",
                                "WJC",
                                "wlfi",
                                "WNBA",
                                "WNBA Finals",
                                "Wolverhampton",
                                "Wolverines",
                                "woman",
                                "Women's Champions League",
                                "Women's National Cricket League",
                                "Women's wrestling",
                                "Womens Ballon d'Or",
                                "wonka",
                                "world affairs",
                                "World Baseball Classic",
                                "World Chess Championship",
                                "world coin",
                                "World Cup Qualifier",
                                "world elctions",
                                "world election",
                                "World Health Organization",
                                "world leader",
                                "world leaders",
                                "World Presidency",
                                "World Series",
                                "World Series of Poker",
                                "worlds",
                                "wormhole token",
                                "WR Masters",
                                "WRBY",
                                "WrestleMania",
                                "wrestling",
                                "wrting",
                                "WSM",
                                "WTA Cincinnati",
                                "WTA Montreal",
                                "WTA Tokyo",
                                "WTFC",
                                "WTT Women's Singles",
                                "Wuhan",
                                "WV",
                                "WWE",
                                "Wycombe Wanderers",
                                "Wyndham Championship",
                                "WYNN",
                                "wyoming",
                                "Wyoming Midterm",
                                "X risk",
                                "xAI",
                                "xeet",
                                "Xi",
                                "XRP",
                                "XRP Prices",
                                "xtrd-1",
                                "xóchitl gálvez",
                                "yahya sinwar",
                                "yale",
                                "yamaka",
                                "yankees",
                                "year comparison",
                                "yellow card",
                                "yelp",
                                "Yemen",
                                "yemeni houthis",
                                "YK Osiris",
                                "ynw melly",
                                "yo.xyz",
                                "Yom",
                                "Yoon",
                                "yorgos lanthimos",
                                "Young Boys",
                                "YouTutbe",
                                "YR4",
                                "yuan",
                                "YUM",
                                "ZachXBT",
                                "Zaporizhzhia",
                                "Zcash",
                                "Zeldin",
                                "zelensky",
                                "zelenskyy",
                                "zerohedge",
                                "Zhengzhou",
                                "ziggy",
                                "zksync",
                                "Zohran Mamdani",
                                "zone of interest",
                                "Zuffa",
                                "zvbear",
                                "Zverev",
                                "zyn",
                                "štefan harabin"
                            ]
                        }
                    },
                    "status": {
                        "title": "Status",
                        "enum": [
                            "active",
                            "closed",
                            "archived",
                            "all"
                        ],
                        "type": "string",
                        "description": "Active = open for trading. Closed = market resolved or stopped accepting orders. Archived = removed from public listings. All = no status filter.",
                        "default": "active"
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "volume24hr",
                            "volume1wk",
                            "volume1mo",
                            "volume1yr",
                            "volume",
                            "liquidity",
                            "openInterest",
                            "competitive",
                            "startDate",
                            "endDate",
                            "createdAt",
                            "oneDayPriceChange",
                            "oneWeekPriceChange",
                            "oneMonthPriceChange"
                        ],
                        "type": "string",
                        "description": "Field used to order results before applying max items.",
                        "default": "volume24hr"
                    },
                    "sortDirection": {
                        "title": "Sort direction",
                        "enum": [
                            "desc",
                            "asc"
                        ],
                        "type": "string",
                        "description": "Descending = biggest first (default). Ascending = smallest first.",
                        "default": "desc"
                    },
                    "minVolume": {
                        "title": "Minimum total volume (USDC)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only include markets/events whose total volume is at or above this number."
                    },
                    "minLiquidity": {
                        "title": "Minimum liquidity (USDC)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only include markets/events whose current liquidity is at or above this number."
                    },
                    "startDateMin": {
                        "title": "Start date from",
                        "type": "string",
                        "description": "ISO-8601 date or datetime. Only include events/markets that started on or after this point."
                    },
                    "startDateMax": {
                        "title": "Start date to",
                        "type": "string",
                        "description": "ISO-8601 date or datetime. Only include events/markets that started on or before this point."
                    },
                    "endDateMin": {
                        "title": "End date from",
                        "type": "string",
                        "description": "ISO-8601 date or datetime. Only include events/markets that end on or after this point."
                    },
                    "endDateMax": {
                        "title": "End date to",
                        "type": "string",
                        "description": "ISO-8601 date or datetime. Only include events/markets that end on or before this point."
                    },
                    "includeOrderbook": {
                        "title": "Include orderbook depth",
                        "type": "boolean",
                        "description": "Fetch full CLOB order book (bids + asks) for every market outcome. Slower; adds one HTTP call per outcome token.",
                        "default": false
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
