POST
/
audio
/
transcriptions
curl --request POST \
  --url https://api.siliconflow.cn/v1/audio/transcriptions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data; boundary=<calculated when request is sent>' \
  --data '{
  "model": "FunAudioLLM/SenseVoiceSmall"
}'
{
  "text": "<string>"
}

Authorizations

Authorization
string
header
required

Use the following format for authentication: Bearer <your api key>

Body

multipart/form-data; boundary=<calculated when request is sent>

Response

200
application/json
200

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