---
title: "Get Transcript"
method: GET
path: "/v1/external/voice-file/jobs/{jobId}/transcript"
tags: ["Voice File"]
---

# Get Transcript

`GET /v1/external/voice-file/jobs/{jobId}/transcript`

Retrieve the transcribed text from a completed Voice File Job.

- Job status must be `COMPLETED`
- Returns the full transcript text and detected locales

Documentation: [How to retrieve results](/voice-file/tutorial#step-5-retrieve-results)

## Path parameters

- `jobId` string, required

## Response `200`

Transcript data

- Transcript
  - `jobId` string, required — Associated job identifier
  - `locales` string[], required — Locales used for transcription
  - `text` string, required — Transcribed text
  - `segments` TranscriptSegment[] — Optional sentence-level timestamps and speaker labels. Empty when no segment data is available.
    - `startTimeMillis` integer, required — Segment start offset from the beginning of the audio, in milliseconds
    - `endTimeMillis` integer, required — Segment end offset from the beginning of the audio, in milliseconds
    - `text` string, required — Transcribed text for this segment
    - `speakerLabel` string, nullable — Opaque speaker label that is meaningful only within this job. Null when diarization does not assign a speaker.

## Other responses

- `401` — Unauthorized
- `404` — Job or transcript not found

---

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