---
title: "Retrieve a transcription"
method: GET
path: "/v1/speech-analytics/{request_id}"
tags: ["Speech Analytics"]
---

# Retrieve a transcription

`GET /v1/speech-analytics/{request_id}`

Returns the transcription for the request identified by `request_id`, including transcript, speaker turns, and insights when available.

## Path parameters

- `request_id` string, required

## Response `200`

Returns the completed transcription.

- object
  - `transcript` FileTranscriptResponse, required
    - `channel_1` string, required — Transcription of speaker one.
    - `channel_2` string, required — Transcription of speaker two.
  - `turns` FileTranscriptTurn[], nullable, required — List of transcription turns, including speaker attribution, timestamps, and sentiment.
    - `speaker` string, required — Speaker identifier.
    - `s` integer, required — Turn start time in milliseconds from the beginning of the file.
    - `e` integer, required — Turn end time in milliseconds from the beginning of the file.
    - `text` string, required — Transcription text attributed to the speaker.
    - `sentiment` string, required — Sentiment associated with the turn. Possible values are `positive`, `neutral`, `negative`.
  - `request_id` string, required — Transcription request ID.
  - `duration` integer, nullable, required — File duration in seconds.
  - `charge` string, required — Total transcription charge in USD.
  - `status` 'completed' | 'failed', required — Transcription status. Possible values are `completed`, `failed`.
  - `transcription_date` string, date-time, required — Date and time of the transcription in ISO 8601 format.
  - `transcription_score` string, nullable, required — Conversation sentiment score. Scores from 1.0 to 3.0 are negative; scores from 4.0 to 5.0 are positive.
  - `transcription_summary` string, nullable, required — Transcription summary.
  - `original_file` string, required — Uploaded file URL.

## Other responses

- `202` — Accepted. The transcription is still in progress.
- `404` — Request failed. An object with the specified ID is not found.

---

[API](https://skmtc.net/wavix/apis/wavix-apis.md) · [All operations](https://skmtc.net/wavix/apis/wavix-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/wavix/wavix-apis/revisions/b22f170488b6/schema)
