Skip to Content
Open API v1API: Get Episode Transcripts

API: Get Episode Transcripts

Retrieve the text transcripts for a specific episode.

Endpoint

GEThttps://podwise.ai/api/open/v1/episodes/[seq]/transcripts

Path Parameters

  • seq: Episode sequence number.

Query Parameters

  • translation: Translation language. When provided, returns the translated transcripts. One of: "Chinese", "Traditional Chinese", "English", "Japanese", "Korean".

Response

type Response = { success: true, result: { // Time string in MM:SS or HH:MM:SS format time: string, // Start time in seconds (floating point), optional start?: number, // End time in seconds (floating point), optional end?: number, content: string, // Optional, automatically resolved to display name when available speaker?: string, // Optional language?: string, }[], episode: { episodeId: string, seq: number, title: string, podcastName: string, cover: string, epCover: string | null, description: string | null, publishTime: number, link: string, linkType: string, duration: number | null, transcribed: boolean, language: string | null, }, }

Last updated on