curl --request POST \
--url https://api.vivgrid.com/v1/audio/transcriptions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form file='@example-file' \
--form 'model=<string>' \
--form 'prompt=<string>' \
--form 'response_format=<string>' \
--form temperature=123{
"text": "<string>"
}Transcribes audio into the input language.
curl --request POST \
--url https://api.vivgrid.com/v1/audio/transcriptions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form file='@example-file' \
--form 'model=<string>' \
--form 'prompt=<string>' \
--form 'response_format=<string>' \
--form temperature=123{
"text": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Audio file to transcribe. Supported formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm.
whisper-1.
Optional prompt to guide the transcription output.
Optional desired format for the output (e.g., "json", "text").
Sampling temperature for randomness (optional).
Successful transcription
Transcribed text of the uploaded audio.