PodHoodDocs
API Reference

Get an episode's word-level transcript

The episode's transcript document: speaker-attributed segments, each word aligned to the audio — the raw material for quotes, clips, and annotated transcripts.

GET
/api/v1/episodes/{episodeId}/transcript
x-api-key<token>

A user-owned key created in Studio → Settings → API keys (paid plans). It reads the channels its owner is a member of.

In: header

Path Parameters

episodeId*string

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/episodes/string/transcript"
{  "formatVersion": 0,  "segments": [    {      "speakerLabel": "string",      "startMs": 0,      "endMs": 0,      "text": "string",      "words": [        {          "t": "string",          "s": 0,          "e": 0        }      ]    }  ]}
{  "error": "string"}
{  "error": "string"}
{  "error": "string"}
{  "error": "string"}
{  "error": "string"}
Was this page helpful?