# Particle Pro – List Episode Clips

> Particle Pro – List Episode Clips 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 AI-extracted highlight clips for a specific podcast episode, sorted by engagement score

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/episodes/:id/clips
- 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-episode-clips-4e3ea401
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-u-X-vfsYO_i0LJi5l5Fb

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-episode-clips-4e3ea401
```

Example prompt: Can you pull up the AI-extracted highlight clips for podcast episode 'lex-fridman-elon-musk-2024' from Particle Pro, sorted by engagement? Show me the top 10.

## When to prefer this

Use this endpoint when you need pre-ranked, AI-curated highlight clips from a specific podcast episode rather than full transcripts or raw audio. Ideal for content curation, social media sourcing, or audience engagement analysis where you want the most impactful moments surfaced automatically without manual review.

## Known failure modes

- Episode ID or slug not found — returns 404 not found
- Invalid cursor value causes pagination error
- Limit parameter out of accepted range returns validation error
- No clips available yet if episode was recently ingested
- Authentication or payment failure (x402) blocks access

## How this service works

List clips for an episode. Returns the AI-extracted highlight clips for a specific episode, sorted by engagement score.

## Output

A paginated list of AI-extracted highlight clips for the specified episode, each with clip metadata and an engagement score. Results are sorted descending by engagement score. Includes 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": "Episode slug or ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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