Request
Add the parameter Authorization
to Headers,whose value is to concatenate the Token after the Bearer. Example:Authorization: Bearer ********************
Token URL: /api/v1/auth/login
or
Body Params application/jsonRequired
{
"audio_file": "string",
"sample_audio_only": true
}
Request Code Samples
curl --location '/api/v1/agent/transcribe' \
--header 'Content-Type: application/json' \
--data '{
"audio_file": "string",
"sample_audio_only": true
}'
Responses
{
"code": 0,
"message": "success",
"data": {
"text": "string",
"confidence": 0,
"duration": 1
}
}
Modified at 2025-09-26 15:37:19