Create Translation
Translate audio into English.
Translates audio files in any supported language to English text using OpenAI’s Whisper model. Supports the same audio formats as transcription. Maximum file size is 25 MB.
Args: file: Audio file to translate (required) model: Model ID to use (e.g., “openai/whisper-1”) prompt: Optional text to guide the model’s style response_format: Format of the output (json, text, srt, verbose_json, vtt) temperature: Sampling temperature between 0 and 1
Returns: Translation object with the English translation
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Response
Successful Response
- CreateTranslationResponseVerboseJson
- CreateTranslationResponseJson
Fields: # noqa: D415.
- language (required): str
- duration (required): float
- text (required): str
- segments (optional): list[TranscriptionSegment]
