# Particle Pro – List Analyzed Podcasts for Publisher

> Particle Pro – List Analyzed Podcasts for Publisher is a paid API for AI agents from api.particle.pro, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns a paginated list of a podcast publisher's shows with their latest political bias analysis attached, supporting filtering by bias bucket, political context, and sort order.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/publishers/:id/bias/podcasts
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/particle-pro-list-analyzed-podcasts-for-publisher-cbc7577b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_owMjCzLku4w-_oQwAxFO9

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability particle-pro-list-analyzed-podcasts-for-publisher-cbc7577b
```

Example prompt: Show me all of NPR's podcasts that have been bias-analyzed, filtered to only LEFT and LEANS_LEFT buckets, sorted by lean score from most to least left-leaning, using the US political framework.

## When to prefer this

Use this endpoint when you need to enumerate and filter a specific publisher's podcast catalog by political bias metrics — especially when you know the publisher slug (e.g. 'npr', 'iheartpodcasts') and need paginated, filterable bias data. Prefer this over a general podcast search when the publisher scope is fixed and bias bucketing or lean score sorting is the primary dimension of interest.

## Known failure modes

- Unknown publisher ID/slug returns 404 or empty result set
- Invalid bias bucket value in filter returns 400 validation error
- Unsupported political_context enum value returns 400
- Expired or invalid pagination cursor returns 400 or resets pagination
- Publisher has no analyzed podcasts, returning empty list with no cursor
- Rate limiting or payment failure returns 402 or 429

## How this service works

List analyzed podcasts for a publisher. Returns a paginated list of the publisher's analyzed podcasts with their latest bias analysis attached.

## Output

A paginated JSON list of the publisher's podcasts, each entry including the podcast name, its latest bias label (e.g. LEFT, CENTER, NOT_POLITICAL), lean score on a -3 to +3 scale, the political context framework used, and the timestamp of the most recent analysis. A pagination cursor is included for fetching subsequent pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Podcast publisher slug (e.g., 'iheartpodcasts', 'npr', 'bbc-radio-4') or ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "bias": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "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)."
      },
      "sort": {
       "enum": [
        "lean_score",
        "evaluated_at",
        "name"
       ],
       "type": "string",
       "description": "Sort metric. lean_score orders on a -3 (extreme left) to +3 (extreme right) ordinal scale; evaluated_at by recency of analysis; name alphabetically."
      },
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page"
      },
      "order": {
       "enum": [
        "asc",
        "desc"
       ],
       "type": "string",
       "description": "Sort direction"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      },
      "political_context": {
       "enum": [
        "US",
        "UK",
        "EU",
        "CANADA",
        "AUSTRALIA",
        "INDIA",
        "OTHER",
        "UNKNOWN"
       ],
       "type": "string",
       "description": "Restrict to podcasts whose latest analysis is calibrated against a single political framework."
      },
      "include_non_political": {
       "type": "boolean",
       "description": "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."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-list-analyzed-podcasts-for-publisher-cbc7577b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.particle.pro](https://www.zero.xyz/host/api.particle.pro/llms.txt)
