JellypodJellypod

Get episode timestamps

GET
/episodes/{episode_id}/timestamps

Returns timing data for each word (or character) in the episode's generated audio, derived from the episode timeline. Useful for synced transcripts, karaoke-style word highlighting, or subtitle tracks on a video player.

Available as soon as audio has been generated — the episode does not need to be published.

Three output formats are supported via the format query param:

  • json (default): JSON with per-word or per-character timings
  • srt: SubRip subtitle file (application/x-subrip)
  • vtt: WebVTT subtitle file (text/vtt)

Returns 404 with not_found if the episode has no timestamps yet (audio has not been generated).

Authorization

BearerAuth
AuthorizationBearer <token>

Jellypod API key. Create and manage keys from the Jellypod dashboard under Settings → API Keys.

In: header

Path Parameters

episode_id*string

The episode's unique identifier.

Formatuuid

Query Parameters

format?string

Output format. Defaults to json.

Default"json"
Value in"json" | "srt" | "vtt"
granularity?string

Granularity of timings in the JSON response. Ignored when format is srt or vtt. Defaults to word.

Default"word"
Value in"word" | "character"

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://api.jellypod.com/v1/episodes/497f6eca-6276-4993-bfeb-53cbbbba6f08/timestamps"
{
  "data": {
    "episode_id": "a7b62598-1927-4181-99d5-5d746c0bbcfe",
    "granularity": "word",
    "words": [
      {
        "word": "string",
        "start": 0,
        "end": 0
      }
    ]
  }
}

Was this page helpful?

© 2026 Jellypod, Inc.