Available to MCP agents as the
advertising section on particle_podcast_get_publisher — pass include=["advertising"]. The sponsor→publishers flip is also exposed to agents via particle_company_get_podcast_ad_presence with include=["publishers"] (the path resolves the company ref and aggregates across all linked sponsors). The cross-publisher leaderboard remains REST-only.- See a publisher’s whole ad book in one shot — total spend, unique sponsors, network buyers.
- Find sponsors doing network/bundle buys across a publisher’s catalog (sort by
podcast_coverage). - Reverse the lens: given a sponsor, see every publisher whose catalog they buy into and at what coverage.
- Compare publishers by monetization density (
ads_per_active_podcast) — small sub-networks often outrank flagship catalogs.
Publisher advertising profile
The top-level rollup for a single publisher:Response (truncated)
publisher and coverage envelopes match the shapes used by the publisher bias and publisher suitability profiles, so callers can use the same destructuring code across all three publisher-level surfaces.
network_buyers_count is the bundle-buy headline: how many distinct sponsors appear on at least three of the publisher’s podcasts and at least 25% of the catalog. A publisher with 76 network buyers is selling a lot of network inventory; a publisher with 2 is mostly selling shows individually.
podcast_coverage on each top sponsor tells you how many of the publisher’s podcasts that sponsor appears on. Public.com on 93 of the 210 iHeartPodcasts shows in our index is unambiguously a network buy.
List sponsors for a publisher
Drill into the full sponsor list for a publisher, sortable by ad volume or by network coverage:Response (truncated)
Query parameters
| Parameter | Default | Description |
|---|---|---|
sort | ad_count | ad_count ranks by total ad volume; podcast_coverage surfaces network buyers; episode_reach prioritizes episode-level breadth. |
min_podcast_coverage | 0 | Only return sponsors appearing on at least this many distinct publisher podcasts. Set to 10–25 to filter to obvious network buyers. |
q | — | Case-insensitive substring match on the sponsor name. |
limit | 25 | Page size, 1–100. |
cursor | — | Opaque cursor from the previous response’s cursor field. |
List publisher podcasts ranked by ad volume
Ad volume diverges sharply from popularity inside a single publisher. The default catalog listing at/v1/podcasts/publishers/{id}/podcasts orders by popularity; this endpoint orders by total ads detected, with per-podcast monetization stats:
Response (truncated)
Sponsor to publishers (the flip)
Given one sponsor — or a company, by slug or domain — list every publisher whose catalog they buy into. When the{id} path parameter resolves to a company (e.g. apple.com), the response aggregates across every deduped sponsor linked to the company; the correct view for multi-sponsor brands like Apple where the company’s footprint spans several sponsor aliases. Pass a specific sponsor ID to scope to that one alias instead.
Response (truncated)
Cross-publisher leaderboard
Rank publishers by an advertising activity metric:Response (truncated)
Query parameters
| Parameter | Default | Description |
|---|---|---|
metric | ad_count | ad_count, unique_sponsors, podcast_reach (active podcasts), episode_reach, ads_per_active_podcast. The density metric makes small sub-networks visible. |
min_active_podcasts | 5 | Only rank publishers with at least this many active podcasts (catalog podcasts that have run at least one ad). Guards ads_per_active_podcast and the other density-style metrics against single-show publishers ranking #1 on noise. Pass 1 for no guard. |
limit | 25 | Page size, 1–100. |
cursor | — | Opaque cursor from the previous response’s cursor field. |
publisher_id if you need a time-windowed view scoped to one publisher.
Scoped sponsor leaderboard
The standard sponsor leaderboard accepts an optionalpublisher_id query parameter — set it to scope the ranking to ads on one publisher’s catalog. Like every publisher reference in the API, the parameter accepts either the publisher slug (e.g. iheartpodcasts) or the encoded publisher ID:
id so you can pivot to other sponsor endpoints).
Choosing the right endpoint
| You want to… | Use this |
|---|---|
| Single-number summary of a publisher’s ad book | GET /v1/podcasts/publishers/{id}/advertising |
| Find network/bundle buyers on a publisher | GET /v1/podcasts/publishers/{id}/advertising/sponsors?sort=podcast_coverage |
| Compare a publisher’s shows by monetization | GET /v1/podcasts/publishers/{id}/advertising/podcasts |
| Map a sponsor’s publisher footprint | GET /v1/podcasts/advertising/sponsors/{id}/publishers |
| Rank all publishers by ad volume or density | GET /v1/podcasts/advertising/publishers/leaderboard |
| Per-podcast or per-company breakdown | See Advertising |
Related
- Advertising — per-podcast, per-company, and per-episode views.
- Publishers — catalog browsing endpoints for publishers themselves.