Audio Transcription
Convert speech to text using Whisper.
Endpoint
POST
/v1/audio/transcriptionsContent-Type: multipart/form-data
Parameters
| Parameter | Type | Description |
|---|---|---|
file | file | Audio file (mp3, wav, m4a, webm, mp4) |
model | string | Model to use. Default: whisper |
language | string | Language code (e.g., en, es) |
Examples
curl https://api.llm.kiwi/v1/audio/transcriptions \
-H "Authorization: Bearer YOUR_API_KEY" \
-F file=@audio.mp3 \
-F model=whisper