Create transcription
POST
https://api.openai.com/v1/audio/transcriptions
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.openai.com/v1/audio/transcriptions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: multipart/form-data' \
--form 'file=@""' \
--form 'model="whisper-1"' \
--form 'prompt="eiusmod nulla"' \
--form 'response_format="json"' \
--form 'temperature="0"' \
--form 'language=""'
Response Response Example
{
"text": "Imagine the wildest idea that you've ever had, and you're curious about how it might scale to something that's a 100, a 1,000 times bigger. This is a place where you can get to do that."
}
Request
Header Params
Content-Type
stringÂ
required
Example:
multipart/form-data
Accept
stringÂ
required
Example:
application/json
Authorization
stringÂ
optional
Example:
Bearer {{YOUR_API_KEY}}
Body Params multipart/form-data
file
fileÂ
required
model
stringÂ
required
whisper-1
 is currently available.Example:
whisper-1
prompt
stringÂ
optional
Example:
eiusmod nulla
response_format
stringÂ
optional
Example:
json
temperature
numberÂ
optional
Example:
0
language
stringÂ
optional
Responses
Modified at 2023-06-28 05:57:00