v1

latestOpenAPI 3.0.3MIT2026-07-132953108.7 KB
OpenAI Integration
Audio

OpenAI Compatible - Create Transcription

OpenAI-compatible audio transcription endpoint. Drop-in replacement for OpenAI's audio/transcriptions API with identical request/response format.

post/openai/v1/audio/transcriptions

Response

Transcription result

textstring required

The transcribed text

taskstring

Task that was performed

languagestring

Detected language of the input audio

durationnumber

Duration of the input audio in seconds

Example response

{
  "text": "Imagine the wildest idea that you've ever had, and you're curious about how it might scale to something that's a 100, a 1,000 times bigger.",
  "task": "transcribe",
  "language": "english",
  "duration": 8.470000267028809
}