---
title: "Get a transcription by id"
method: GET
path: "/transcriptions/{transcriptionId}"
tags: ["Transcription"]
---

# Get a transcription by id

`GET /transcriptions/{transcriptionId}`

This operation fetches the full transcription text and its summarization (if available) for the provided transcription id.

The transcription id is available on the `transcriptionId` field of relevant objects.

## Path parameters

- `transcriptionId` string, required

## Response `200`

Expected response to a valid request

- object
  - `transcription` Transcription, required
    - `id` string, required — The id of the transcription job.
    - `status` 'completed' | 'pending' | 'failed' | 'noSpeech', required — The status of the transcription job. When `pending`, the transcription is still being processed.
    - `summarization` Summarization
      - `status` 'completed' | 'pending' | 'failed', required — The status of the summarization job. When `pending`, the summarization is still being processed.
      - `text` string, required — The full plain text of the summarization. Empty until the summarization completes.
    - `text` string, required — The full plain text of the transcription. Empty until the transcription completes.

## Other responses

- `400` — bad request
- `404` — not found
- `500` — unexpected error

---

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