POST https://123api.co/v1/audio/transcriptions
curl --request POST \
--url https://123api.co/v1/audio/transcriptions \
--header 'Authorization: Bearer <token>' \
--form file='@sample.mp3' \
--form model='whisper-1'| Field | Type | Description |
|---|---|---|
file | file | Audio file to transcribe |
model | string | Example: whisper-1 |
language | string | Optional language hint |
response_format | string | Optional output format such as json or text |
{
"text": "Welcome to 123API."
}