Return a bundled overview of one podcast episode: title, podcast, speakers (with entity slugs), top mentioned entities, topics, and segment/clip counts. By default the response is lean — counts plus the top mentioned entities. SetDocumentation Index
Fetch the complete documentation index at: https://docs.particle.pro/llms.txt
Use this file to discover all available pages before exploring further.
include_full_segments=true for the structural outline with timestamps, include_full_entities=true for the complete entity list, or include_transcript=true for the dialogue transcript (optionally filtered by speaker or time range).
For “every line about X in this episode” use podcasts/get_entity_mentions with episode_slug instead — that returns the dialogue around each mention with is_mention flags.
Inputs
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
episode_slug | string | yes | — | Episode slug or canonical ID. |
include_transcript | boolean | no | false | Include the dialogue transcript. Off by default — large for long episodes. |
transcript_format | string | no | text | Transcript format when include_transcript=true. One of: dialogue, text, srt. |
transcript_speaker | string | no | — | Filter the transcript to one speaker (name or entity slug). |
transcript_start | number | no | — | Transcript start clip in seconds. |
transcript_end | number | no | — | Transcript end clip in seconds. |
include_full_segments | boolean | no | false | Include the full segment list with start/end timestamps. The lean overview returns only counts. |
include_full_entities | boolean | no | false | Include all mentioned entities ranked by salience. The lean overview returns only the top 20. |
Output
A markdown document with the episode title as an H2, then KV lines (**Podcast:** as Title (slug), **Published:**, **Episode slug:**, **Duration:**, **Counts:** summarising segments/clips/entities), then a paragraph description. The following H3 sections appear when the underlying data is present:
### Speakers— bullets ofName (role)(slug appended as— slug: <entity_slug>when linked).### Top entities— bullets ofName (slug) — salience X.XXX, N occurrences. Capped at 20 unlessinclude_full_entities=true.### Topics— bullets, one topic per line.### Segments— only wheninclude_full_segments=true. Bullets formatted#N TYPE — Title @ Xs–Ys.### Transcript (<format>)— only wheninclude_transcript=true. Body is the raw transcript text/SRT, or fordialogueformat a series ofSpeaker: textlines.
episode_slug="why-are-we-all-so-stressed", include_full_segments=true, truncated):
Example
Related
- REST equivalents:
GET /v1/podcasts/episodes/{id},/transcript,/segments,/entities. - For dialogue around a specific entity in this episode, use
podcasts/get_entity_mentionswithepisode_slug. - For ranked dialogue across the catalog, use
podcasts/search_dialogue.