particle_podcast_list_clips
Browse AI-extracted highlight clips across the catalog, ranked by engagement potential — the shareable moments. Filter by podcast, episode, clip type (FUNNY, CONTROVERSIAL, INSIGHTFUL, ...), minimum engagement score, or speaker — speaker takes a person slug and returns only clips of that person talking ('an insightful Sam Altman clip').
Pass clip_id for one clip's full detail (description, social-hook intro, speaker, audio URL), plus include: ["transcript"] for its dialogue.
For text-based clip discovery — finding clips about a topic or entity — use particle_podcast_search_transcripts instead: matching clips arrive inline on each search result. Episode slugs on every row feed particle_podcast_get_episode.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Clip type filter. | |
| limit | No | Clips per page (1-50, default 10). | |
| cursor | No | Opaque pagination cursor from a previous response. | |
| clip_id | No | Return one clip's full detail instead of a listing. Clip IDs come from this tool, particle_podcast_get_episode with include=clips, and search-result overlapping clips. | |
| include | No | With clip_id only: 'transcript' attaches the clip's dialogue transcript. | |
| speaker | No | Restrict the listing to clips whose primary speaker is this person — a person slug (e.g. 'sam-altman' from particle_person_resolve), a knowledge-graph entity slug for the same person, or an ID. | |
| episode_slug | No | Restrict the listing to one episode (slug or ID). | |
| podcast_slug | No | Restrict the listing to one podcast (slug, internal ID, or numeric iTunes ID). | |
| output_format | No | Output serialization. 'markdown' (default) returns the LLM-facing rendering. 'json' returns the structured payload as JSON text — use only for programmatic chaining where exact field extraction matters; the JSON shape is larger and noisier for an LLM to read. | |
| min_engagement | No | Minimum engagement potential score (0-100). Above 70 is typical for a strong clip. |