# 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.03/call, status unknown (last checked 2026-09-14).

Returns a paginated list of episodes for a specific podcast, filterable by title keyword and date range, identified by slug or ID.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/:id/episodes
- 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-podcast-episodes-41cd1262
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Geb3p931ZSGH_DXXIhi8U

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-41cd1262
```

Example prompt: Can you pull up the last 20 episodes of the All-In podcast published after January 1, 2024, and filter for any titles mentioning 'AI'?

## When to prefer this

Use this endpoint when you need to enumerate or browse episodes of a known podcast by its slug or ID, optionally filtered by title keyword or publication date. Prefer this over a full-text search endpoint when you know the specific show and want a structured episode list rather than content-level search results.

## Known failure modes

- Invalid or unknown podcast slug/ID returns a 404 or empty result set
- Malformed ISO 8601 date strings in published_after or published_before cause a 400 error
- Expired or invalid pagination cursor returns an error or unexpected results
- Exceeding rate limits or insufficient USDC balance causes a 402 payment required error
- Empty result set when no episodes match the title filter or date range

## How this service works

List episodes for a podcast. Returns a paginated list of episodes for a specific podcast, identified by slug (e.g., 'all-in') or ID.

## Output

A paginated list of podcast episodes for the specified show, each with metadata such as title and publication date, along with an opaque cursor for fetching the next page of results.

## 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 slug (e.g., 'all-in'), internal ID, or numeric iTunes ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "description": "Filter to episodes whose title contains this text, case-insensitively. Matches the episode TITLE only — to search what is said inside episodes, use /v1/podcasts/episodes/search with podcast_id."
      },
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      },
      "published_after": {
       "type": "string",
       "description": "Only episodes published after this ISO 8601 date or date-time (e.g. 2024-01-01 or 2024-01-01T00:00:00Z)"
      },
      "published_before": {
       "type": "string",
       "description": "Only episodes published before this ISO 8601 date or date-time (e.g. 2024-01-01 or 2024-01-01T00:00:00Z)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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