> ## Documentation Index
> Fetch the complete documentation index at: https://docs.particle.pro/llms.txt
> Use this file to discover all available pages before exploring further.

# particle_podcast_get_sponsors

> Top sponsors for a single podcast plus aggregate ad stats — totals, unique sponsors, episodes with ads, host-read vs pre-recorded.

<Note>
  In the **`podcast_advertising`** category, which is **opt-in** — it is callable by name on any connection, but only advertised on `tools/list` when selected via `?include=podcast_advertising`. See [Tool sets & discovery](/mcp/tool-sets).
</Note>

Top sponsors for a single podcast plus aggregate ad stats: total ads, unique sponsors, episodes with ads, average ads per episode, and host-read vs pre-recorded breakdown.

This is the "who sponsors podcast Y" view. For "where does company X sponsor" use [`particle_company_get_podcast_ad_presence`](/mcp/tools/podcast_advertising/company-get-podcast-ad-presence). For top advertisers across the catalog use [`particle_podcast_get_sponsor_leaderboard`](/mcp/tools/podcast_advertising/podcast-get-sponsor-leaderboard).

## Inputs

| Field          | Type   | Required | Default | Description                                      |
| -------------- | ------ | -------- | ------- | ------------------------------------------------ |
| `podcast_slug` | string | yes      | —       | Podcast slug, internal ID, or numeric iTunes ID. |

## Output

A markdown document with `## Sponsors of <podcast_id>` and KV lines for `**Total ads:**`, `**Unique sponsors:**`, `**Episodes with ads:**`, `**Avg ads/episode:**` (two decimals), `**Read mix:**` (host-read vs pre-recorded counts). A `### Top sponsors` section follows with bullets formatted `Sponsor (company_id) — N ads across M episodes` (the parenthesized company\_id appears only when the sponsor resolved to a known company).

Sample (`podcast_slug="all-in"`):

```markdown theme={"dark"}
## Sponsors of 4t9PU1WkzOroEXfBl6ia7r

**Total ads:** 55
**Unique sponsors:** 30
**Episodes with ads:** 23
**Avg ads/episode:** 2.39
**Read mix:** 55 host-read, 0 pre-recorded
### Top sponsors

- OKX (okx.com) — 7 ads across 7 episodes
- Circle (circle.com) — 5 ads across 5 episodes
- Solana (solanalabs.com) — 4 ads across 4 episodes
```

## Example

```text theme={"dark"}
Agent calls: particle_podcast_get_sponsors { "podcast_slug": "all-in" }
```

## Related

* REST equivalent: [`GET /v1/podcasts/{id}/advertising`](/podcasts/advertising).
* Inverse view: [`particle_company_get_podcast_ad_presence`](/mcp/tools/podcast_advertising/company-get-podcast-ad-presence).
* Cross-catalog ranking: [`particle_podcast_get_sponsor_leaderboard`](/mcp/tools/podcast_advertising/podcast-get-sponsor-leaderboard).
