POST
/
api
/
audio
/
{agentId}
/
transcriptions
Transcribe audio
curl --request POST \
  --url http://localhost:3000/api/audio/{agentId}/transcriptions \
  --header 'Content-Type: multipart/form-data' \
  --form userId=3c90c3cc-0d44-4b50-8888-8dd25736052a
{
  "success": true,
  "data": {
    "text": "<string>"
  }
}

Path Parameters

agentId
string
required

ID of the agent

Body

multipart/form-data

Response

200
application/json

Audio transcribed successfully

The response is of type object.