---
title: "Get transcription result"
method: GET
path: "/api/Audio/{jobId}/transcribe/result"
tags: ["Audio"]
---

# Get transcription result

`GET /api/Audio/{jobId}/transcribe/result`

Retrieves the result of an audio transcription that was initiated from `/api/audio/transcribe/start`. The transcription is in JSON and contains timestamps for both words and segments.  After you retrieve the transcription result, the transcription record is deleted.

## Path parameters

- `jobId` string, required

## Response `200`

Returns the transcription result

- TranscriptionResult — Result of an audio transcription job, containing the full transcript text, language, and time-aligned segments.
  - `text` string — The full transcription text
  - `segments` TranscriptionSegment[] — Time-aligned segments of the transcription
    - `start` number, double
    - `end` number, double
    - `id` integer
    - `text` string
    - `words` TranscriptionWord[]
      - `start` number, double
      - `end` number, double
      - `word` string
  - `language` string — Detected language of the audio

## Other responses

- `404` — Transcription job not found
- `409` — File is still processing
- `410` — Transcription result has expired and been purged

---

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