# Particle Pro – List Podcast Episodes

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

Returns a paginated list of podcast episodes across all podcasts, filterable by person, company, entity, podcast, language, duration, and date.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/episodes
- Price: $0.01/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-podcast-episodes-4b217542
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iE0BkSA0Qs9zlwvZ_bN6B

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-podcast-episodes-4b217542
```

Example prompt: Pull me a list of the 20 most recent podcast episodes featuring Elon Musk as a guest from the Particle Pro episodes API — English language only.

## When to prefer this

Use this endpoint when you need to discover or browse podcast episodes across a broad catalog filtered by person appearances, company mentions, podcast identity, language, or date/duration constraints — especially when leveraging Particle Pro's knowledge-graph entity resolution (slugs like 'elon-musk' or 'nvidia.com') for structured media intelligence rather than free-text search.

## Known failure modes

- Invalid or unknown podcast_id, person_id, company_id, or entity_id returns empty results or 404
- Invalid language code (not ISO 639-1) may return no results or an error
- Invalid cursor value causes pagination error
- Providing a max_duration less than min_duration returns an error or empty set
- Rate limits or payment failures ($0.01 USDC per call) result in 402 Payment Required
- Truncated or missing query parameters may return unexpected broad result sets

## How this service works

List episodes. Returns a paginated list of podcast episodes across all podcasts.

## Output

A paginated JSON list of podcast episodes with metadata such as title, publication date, duration, associated podcast, featured persons/entities, and a cursor 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "role": {
       "enum": [
        "guest",
        "host",
        "panelist",
        "correspondent",
        "speaker",
        "mention"
       ],
       "type": "string",
       "description": "Entity role filter. Constrains which episodes match the entity_id, person_id, or company_id. 'speaker' matches any speaking role (host, co-host, guest, panelist, correspondent) without including mention-only episodes."
      },
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      },
      "language": {
       "type": "string",
       "description": "Restrict to episodes of podcasts in this language (ISO 639-1 code, e.g. 'fr'). Matches the podcast's primary language subtag, so 'fr' covers 'fr-FR'."
      },
      "entity_id": {
       "type": "string",
       "description": "Entity slug (e.g., 'elon-musk', 'openai') or ID. Returns episodes featuring this entity as a speaker or mentioned entity."
      },
      "person_id": {
       "type": "string",
       "description": "Person slug (e.g., 'dick-costolo'), knowledge-graph entity slug for the same person, or ID. Returns episodes featuring this person as a speaker — works even when the speaker has no knowledge-graph entity linked. When the value itself matches a knowledge-graph entity slug (corroborated to the same person), the default and 'mention' roles also include episodes that merely mention the person, matching entity_id semantics; pass a speaker role (guest, host, panelist, correspondent) for speaker-only results."
      },
      "company_id": {
       "type": "string",
       "description": "Company slug (e.g., 'nvidia'), domain (e.g., 'nvidia.com'), or ID. Resolves to the company's linked entity."
      },
      "podcast_id": {
       "type": "string",
       "description": "Podcast slug (e.g., 'all-in'), internal ID, or numeric iTunes ID"
      },
      "max_duration": {
       "type
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-list-podcast-episodes-4b217542/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)
