POST
/
openai
/
v1
/
audio
/
transcriptions
curl --request POST \
  --url https://api.groq.com/openai/v1/audio/transcriptions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'language=<string>' \
  --form model=whisper-large-v3 \
  --form 'prompt=<string>' \
  --form response_format=json \
  --form temperature=0 \
  --form 'timestamp_granularities[]=[
  "segment"
]'
{
  "text": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data

Response

200 - application/json

OK

Represents a transcription response returned by model, based on the provided input.