# Particle Pro – List Podcast Clips

> Particle Pro – List Podcast Clips 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 AI-extracted highlight clips from podcast episodes, filterable by type, speaker, podcast, and engagement score, ranked by engagement potential.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/clips
- 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-clips-fcef14dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4DYZeoQqWSDB-07CzLr97

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-clips-fcef14dc
```

Example prompt: Pull the top 10 most insightful clips from the All-In podcast with an engagement score above 70 — I want to see what's worth sharing.

## When to prefer this

Use this endpoint when you need to discover or surface high-engagement highlight moments from podcasts — especially when filtering by speaker, clip type (e.g. CONTROVERSIAL, FUNNY, EDUCATIONAL), or engagement threshold. Prefer this over generic podcast search when you need ranked, AI-curated clips rather than full episode metadata or transcripts.

## Known failure modes

- Invalid podcast_id or episode_id slug returns empty results or 404
- Unknown speaker slug returns no clips rather than an error
- min_engagement values outside 0–100 range may be rejected or return no results
- Expired or malformed pagination cursor causes a bad request error
- Rate limiting or payment failure (x402) if USDC balance is insufficient

## How this service works

List clips. Returns AI-extracted highlight clips across podcast episodes, ranked by engagement potential.

## Output

A paginated list of AI-extracted podcast highlight clips, each containing clip metadata such as clip type (e.g. FUNNY, INSIGHTFUL, CONTROVERSIAL), primary speaker, episode and podcast references, and an engagement potential score (0–100). 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "type": {
       "type": "string",
       "description": "Clip type filter: SPICY, CONTROVERSIAL, EMOTIONAL, FUNNY, SHOCKING, INSIGHTFUL, INFORMATIVE, EDUCATIONAL, PHILOSOPHICAL, AHA_MOMENT, NOTABLE_LINE, BEST_STORY, DEBATE_DISAGREEMENT"
      },
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      },
      "speaker": {
       "type": "string",
       "description": "Speaker filter: person slug (e.g., 'sam-altman'), knowledge-graph entity slug for the same person, or ID. Returns only clips whose primary speaker is this person."
      },
      "episode_id": {
       "type": "string",
       "description": "Filter to a specific episode by slug or ID"
      },
      "podcast_id": {
       "type": "string",
       "description": "Podcast slug (e.g., 'all-in'), internal ID, or numeric iTunes ID"
      },
      "min_engagement": {
       "type": "integer",
       "format": "int64",
       "description": "Minimum engagement potential score (integer, 0 to 100). Values above 70 are typical for a strong clip."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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