Skip to main content
GET
/
v1
/
podcasts
/
bias
/
{result}
/
publishers
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
  "https://api.particle.pro/v1/podcasts/bias/{result}/publishers?limit=25&min_count=1&sort=count"
{
  "data": [
    {
      "analyzed_podcasts": 123,
      "bucket_share": 123,
      "podcast_count": 123,
      "podcasts_in_bucket": 123,
      "publisher": {
        "id": "<string>",
        "name": "<string>",
        "slug": "<string>"
      },
      "sample_podcast_ids": [
        "<string>"
      ]
    }
  ],
  "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).

Path Parameters

result
enum<string>
required

Bias bucket to flip on

Available options:
NOT_POLITICAL,
EXTREME_LEFT,
LEFT,
LEANS_LEFT,
CENTER,
LEANS_RIGHT,
RIGHT,
EXTREME_RIGHT

Query Parameters

limit
integer<int64>
default:25

Results per page

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

Opaque pagination cursor from previous response

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_count
integer<int64>
default:1

Only return publishers with at least this many podcasts in the requested bucket.

Required range: 1 <= x <= 500
sort
enum<string>
default:count

count ranks by raw podcasts_in_bucket; share ranks by podcasts_in_bucket / analyzed_podcasts to surface publishers whose catalog is concentrated in this bucket.

Available options:
count,
share

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