v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-25173140700.7 KB
Transcription

Transcribe an audio file

Transcribe an uploaded audio file via the configured Whisper provider.

post/transcriptions/

Query parameters

cookie_namestring nullable

Response

Successful Response

textstring required

Transcribed text of the audio.

languagestring required

Detected language of the audio (ISO 639-1 or language name).

duration_secondsnumber required

Duration of the audio in seconds.

Example response

{
  "text": "Hello, this is a test transcription.",
  "language": "english",
  "duration_seconds": 12.5
}