---
title: "Get transcript"
method: GET
path: "/transcripts/{id}"
tags: ["Transcripts"]
---

# Get transcript

`GET /transcripts/{id}`

Retrieve a transcript by its ID. Returns the full transcript content including all segments with speaker information and timestamps.

## Path parameters

- `id` string, required

## Response `200`

Successfully retrieved the transcript

- TranscriptDto
  - `id` string, required
  - `meeting` IdDto, required
    - `id` string, required
  - `detectedLanguage` string, nullable, required
  - `content` TranscriptContentDto, required
    - `segments` TranscriptSegmentDto[], required
      - `startTime` number, required
      - `endTime` number, required
      - `speaker` string, required
      - `text` string, required
  - `createdAt` string, date-time, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized - invalid or missing API key
- `404` — Transcript not found
- `500` — Error response

---

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