API: Request Episode Translation
Request translation of an episode’s transcript and summary into a specified language. If the translation already exists and is complete, the request is a no-op.
Endpoint
POSThttps://podwise.ai/api/open/v1/episodes/[seq]/translate
Path Parameters
seq: Episode sequence number (found in search results or Podwise URL).
Request Body
type RequestBody = {
// Target language. One of: "Chinese", "Traditional Chinese", "English", "Japanese", "Korean"
language: "Chinese" | "Traditional Chinese" | "English" | "Japanese" | "Korean",
}Response
type Response = {
success: true,
result: {
message: string,
},
}Last updated on