Skip to Content
Open API v1API: List Episode Translations

API: List Episode Translations

Retrieve available translations and their processing status for a specific episode.

Endpoint

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

Path Parameters

  • seq: Episode sequence number (found in search results or Podwise URL).

Response

The result object is a map of language names to their translation status.

type Response = { success: true, result: { // Key is the language name (e.g., "Chinese", "Japanese") [language: string]: { // One of: null, "processing", "done", "failed" status: string | null, // 0-100 for processing/done progress: number, }, }, }
StatusDescription
nullTranslation has not been started.
processingTranslation is currently in progress.
doneTranslation is complete. progress will be 100.
failedTranslation failed.

Last updated on