Create Transcription
POST
Typescript
Documentation Index
Fetch the complete documentation index at: https://docs.dedaluslabs.ai/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Transcribe audio files to text using speech-to-text models. Supports multiple audio formats including mp3, mp4, wav, and more. Note: OpenAI only endpoint.Usage Examples
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
multipart/form-data
Response
Successful Response
- CreateTranscriptionResponseVerboseJson
- CreateTranscriptionResponseJson
Represents a verbose json transcription response returned by model, based on the provided input.
Fields:
- language (required): str
- duration (required): float
- text (required): str
- words (optional): list[TranscriptionWord]
- segments (optional): list[TranscriptionSegment]
- usage (optional): TranscriptTextUsageDuration
The language of the input audio.
The duration of the input audio.
The transcribed text.
Extracted words and their corresponding timestamps.
Segments of the transcribed text and their corresponding details.
Usage statistics for models billed by audio input duration.
Last modified on May 29, 2026
Typescript
