Skip to main content
GET
/
v1
/
podcasts
/
suitability
/
publishers
/
leaderboard
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
  "https://api.particle.pro/v1/podcasts/suitability/publishers/leaderboard?limit=25&metric=safest&min_analyzed_podcasts=5"
{
  "data": [
    {
      "coverage": {
        "analyzed_coverage": 123,
        "analyzed_podcasts": 123,
        "quality": "<string>",
        "total_podcasts": 123
      },
      "metric_value": 123,
      "publisher": {
        "id": "<string>",
        "name": "<string>",
        "slug": "<string>"
      },
      "rank": 123,
      "tier_breakdown": {
        "limited": 123,
        "limited_share": 123,
        "placeable_share": 123,
        "safe": 123,
        "safe_share": 123,
        "sensitive": 123,
        "sensitive_share": 123,
        "unsafe": 123,
        "unsafe_share": 123
      }
    }
  ],
  "has_more": true,
  "cursor": "<string>"
}

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.

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:safest

How to rank publishers. safest sorts by SAFE share of the analyzed catalog (desc); riskiest sorts by UNSAFE share (desc); most_placeable sorts by combined SAFE + LIMITED share (desc) — the 'broadly buyable' slice; most_analyzed sorts by absolute analyzed_podcasts count (desc).

Available options:
safest,
riskiest,
most_placeable,
most_analyzed
min_analyzed_podcasts
integer<int64>
default:5

Exclude publishers with fewer than this many analyzed podcasts. Guards against tiny catalogs dominating share-based metrics.

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