Skip to Content

Whisper-1 Audio Transcription

Endpoint

POST https://123api.co/v1/audio/transcriptions

Request Example

curl --request POST \ --url https://123api.co/v1/audio/transcriptions \ --header 'Authorization: Bearer <token>' \ --form file='@sample.mp3' \ --form model='whisper-1'

Common Parameters

FieldTypeDescription
filefileAudio file to transcribe
modelstringExample: whisper-1
languagestringOptional language hint
response_formatstringOptional output format such as json or text

Typical Response

{ "text": "Welcome to 123API." }

Notes