Speech Analytics
Upload a file
Uploads an audio file for transcription. Transcription is asynchronous; Wavix sends a POST callback to callback_url when it completes, including the request_id returned by this request.
Callback body:
{
"request_id": "e865ea07-25af-4fdd-876e-04b0d41d5ebd",
"status": "completed",
"error": null
}
- request_id: ID of the transcription request.
- status: One of completed (transcription succeeded) or failed (transcription encountered an error).
- error: Error description, or null when the transcription succeeded.
post/v1/speech-analytics
Response
Returns the transcription request_id for the uploaded file.
Example response
{
"file": "file.mp3",
"request_id": "e865ea07-25af-4fdd-876e-04b0d41d5ebd",
"success": true
}