particle_podcast_list_episodes
List episodes across the catalog with rich filters: by podcast, person, company, language, date range, duration, or transcript availability.
Use this for episode-level discovery when you only need metadata (title, duration, speakers, counts). For dialogue around a person in any episode, use particle_podcast_find_mentions. For ranked retrieval by topic, use particle_podcast_search_transcripts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| role | No | Role filter when person_slug or company_slug is set. | |
| limit | No | Episodes per page (1-50, default 10). | |
| cursor | No | Opaque pagination cursor from a previous response. | |
| language | No | 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_slug | No | Knowledge-graph entity slug from particle_entity_resolve for the long tail that isn't a person or company — places, organizations, events, products, concepts (e.g. 'germany'). Use person_slug for people and company_slug for companies. | |
| person_slug | No | Person slug or encoded person ID from particle_person_resolve, particle_entity_resolve, or the guest tools (e.g. 'sam-altman'). Episodes featuring or mentioning the person. | |
| company_slug | No | Company slug, domain, or ID. Resolves to the linked entity. | |
| max_duration | No | Maximum episode duration in seconds. | |
| min_duration | No | Minimum episode duration in seconds. | |
| podcast_slug | No | Podcast slug, internal ID, or numeric iTunes ID. Restrict to one podcast. | |
| 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. | |
| has_transcript | No | Only include episodes with a completed transcript. | |
| published_after | No | ISO 8601 date or date-time. | |
| published_before | No | ISO 8601 date or date-time. |