v50

latestOpenAPI 3.1.0MITraw.githubusercontent.com2026-06-16122182589.7 KB
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.

request_idstring required

Transcription request ID.

durationinteger nullable required

File duration in seconds.

chargestring required

Total transcription charge in USD.

status'completed' | 'failed' required

Transcription status. Possible values are completed, failed.

transcription_datestring date-time required

Date and time of the transcription in ISO 8601 format.

transcription_scorestring nullable required

Conversation sentiment score. Scores from 1.0 to 3.0 are negative; scores from 4.0 to 5.0 are positive.

transcription_summarystring nullable required

Transcription summary.

original_filestring required

Uploaded file URL.

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"
}