Skip to main content
GET
/
v1
/
podcasts
/
bias
/
publishers
/
leaderboard
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
  "https://api.particle.pro/v1/podcasts/bias/publishers/leaderboard?limit=25&metric=most_left_leaning&min_analyzed_podcasts=5&min_political_podcasts=5"
{
  "data": [
    {
      "coverage": {
        "analyzed_coverage": 123,
        "analyzed_podcasts": 123,
        "total_podcasts": 123
      },
      "political_content": {
        "podcasts": 123,
        "share": 123,
        "avg_topic_percentage": 123
      },
      "publisher": {
        "id": "<string>",
        "name": "<string>",
        "slug": "<string>"
      },
      "rank": 123,
      "last_evaluated_at": "2023-11-07T05:31:56Z",
      "lean": {
        "avg_score": 123,
        "dominant_bias": "<string>",
        "stddev": 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>
required

Ranking metric. most_left/right_leaning rank by avg_lean_score; most_political by share of political podcasts in the catalog; most_diverse / most_monolithic by stddev of lean across political podcasts; most_analyzed by catalog coverage.

Available options:
most_left_leaning,
most_right_leaning,
most_political,
most_diverse,
most_monolithic,
most_analyzed
political_context
enum<string>

Restrict the underlying corpus to a single political framework before aggregating.

Available options:
US,
UK,
EU,
CANADA,
AUSTRALIA,
INDIA,
OTHER,
UNKNOWN
min_analyzed_podcasts
integer<int64>
default:5

Only rank publishers with at least this many analyzed podcasts. Below the default of 5, aggregate signals are unreliable.

Required range: 1 <= x <= 500
min_political_podcasts
integer<int64>
default:5

Only rank publishers with at least this many political podcasts. Applied to score and diversity metrics; ignored for coverage metrics.

Required range: 1 <= x <= 500
since
string<date-time>

Restrict to analyses evaluated on or after this timestamp (RFC 3339)

until
string<date-time>

Restrict to analyses evaluated strictly before this timestamp (RFC 3339)

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