Speech Analytics
Retrieve a transcription
Returns the transcription for the request identified by request_id, including transcript, speaker turns, and insights when available.
get/v1/speech-analytics/{request_id}
Path parameters
request_idstring required
Example:e865ea07-25af-4fdd-876e-04b0d41d5ebd
The request_id of the transcription, returned when the file was uploaded.
Response
Returns the completed transcription.
Example response
{
"transcript": {
"channel_1": "Hi there",
"channel_2": "Hello"
},
"turns": [
{
"speaker": "channel_1",
"s": 600,
"e": 700,
"text": "Hi",
"sentiment": "positive"
}
],
"request_id": "e84f350f-6da7-4b56-80eb-41dec572626b",
"language": "en",
"duration": 102,
"charge": "0.01",
"status": "completed",
"transcription_date": "2023-01-09T10:04:39.734Z",
"transcription_score": "3.8",
"transcription_summary": "The agent and client discussed call recording and call transcription",
"original_file": "https://api.wavix.com/v1/files/uuid"
}