Skip to main content
GET
/
v1
/
podcasts
/
publishers
/
{id}
/
bias
/
podcasts
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
  "https://api.particle.pro/v1/podcasts/publishers/{id}/bias/podcasts?limit=25&include_non_political=true&sort=lean_score&order=desc"
{
  "data": [
    {
      "bias": {
        "confidence": "<string>",
        "evaluated_at": "2023-11-07T05:31:56Z",
        "political_context": "<string>",
        "reasoning": "<string>",
        "result": "<string>",
        "episodes_analyzed": 123,
        "political_context_detail": "<string>",
        "sample_episode_ids": [
          "<string>"
        ],
        "transcript_evidence": "<string>",
        "web_research_evidence": "<string>"
      },
      "podcast": {
        "id": "<string>",
        "title": "<string>",
        "image_url": "<string>",
        "slug": "<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

id
string
required

Podcast publisher slug (e.g., 'iheartpodcasts', 'npr', 'bbc-radio-4') or ID

Query Parameters

limit
integer<int64>
default:25

Results per page

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

Opaque pagination cursor from previous response

bias
string[] | null

Filter to one or more bias buckets. Accepts NOT_POLITICAL, EXTREME_LEFT, LEFT, LEANS_LEFT, CENTER, LEANS_RIGHT, RIGHT, or EXTREME_RIGHT. To OR-filter multiple buckets, pass a comma-separated list (e.g. ?bias=LEFT,LEANS_LEFT).

political_context
enum<string>

Restrict to podcasts whose latest analysis is calibrated against a single political framework.

Available options:
US,
UK,
EU,
CANADA,
AUSTRALIA,
INDIA,
OTHER,
UNKNOWN
include_non_political
boolean
default:true

When true (default), include podcasts whose latest result is NOT_POLITICAL. Set to false to restrict the response to podcasts the agent rated as political.

sort
enum<string>
default:lean_score

Sort metric. lean_score orders on a -3 (extreme left) to +3 (extreme right) ordinal scale; evaluated_at by recency of analysis; name alphabetically.

Available options:
lean_score,
evaluated_at,
name
order
enum<string>
default:desc

Sort direction

Available options:
asc,
desc

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