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,
},
},
}| Status | Description |
|---|---|
null | Translation has not been started. |
processing | Translation is currently in progress. |
done | Translation is complete. progress will be 100. |
failed | Translation failed. |
Last updated on