Skip to main content
GET
/
v1
/
podcasts
/
advertising
/
publishers
/
leaderboard
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
  "https://api.particle.pro/v1/podcasts/advertising/publishers/leaderboard?limit=25&metric=ad_count&min_active_podcasts=5"
{
  "data": [
    {
      "ad_count": 123,
      "ads_per_active_podcast": 123,
      "coverage": {
        "active_coverage": 123,
        "active_podcasts": 123,
        "total_podcasts": 123
      },
      "episode_reach": 123,
      "publisher": {
        "id": "<string>",
        "name": "<string>",
        "slug": "<string>"
      },
      "rank": 123,
      "unique_sponsors": 123
    }
  ],
  "has_more": true,
  "cursor": "<string>"
}

Authorizations

X-API-Key
string
header
required

Pass your API key in the X-API-Key header (recommended).

Query Parameters

limit
integer<int64>
default:25

Results per page

Required range: 1 <= x <= 100
cursor
string

Opaque pagination cursor from previous response

metric
enum<string>
default:ad_count

Metric to rank publishers by. ads_per_active_podcast surfaces monetization density (small sub-networks often outrank big catalogs). Ranking reflects an all-time MV-fresh snapshot; this endpoint does not currently support time-window filters.

Available options:
ad_count,
unique_sponsors,
podcast_reach,
episode_reach,
ads_per_active_podcast
min_active_podcasts
integer<int64>
default:5

Only rank publishers with at least this many active podcasts (catalog podcasts that have run at least one detected ad). Guards ads_per_active_podcast and the other density-style metrics against tiny catalogs dominating the leaderboard — single-show publishers can otherwise rank #1 on ads_per_active_podcast purely on noise.

Required range: 1 <= x <= 1000

Response

OK

data
object[] | null
required

List of results

has_more
boolean
required

Whether more results exist

cursor
string

Pass to next request for more results