Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params multipart/form-data
Request Code Samples
curl --location --request POST 'https://www.16api.com/v1/audio/transcriptions' \
--header 'Authorization: Bearer <token>' \
--form 'file=@"C:\\Users\\Administrator\\Desktop\\test.m4a"' \
--form 'model="whisper-1"' \
--form 'language="zh"' \
--form 'prompt="这是一段中文音频"' \
--form 'response_format="json"'
Responses
application/json {
"text": "12345678910"
}
Modified at 2026-02-01 07:33:56