---
title: "Get call transcription"
method: GET
path: "/v1/calls/{id}/transcription"
tags: ["Calls"]
---

# Get call transcription

`GET /v1/calls/{id}/transcription`

Returns the transcription for a call. Returns 404 if the call is in a workspace outside the API key scope.

## Path parameters

- `id` string, required

## Response `200`

The call transcription

- PublicCallTranscriptionDTO
  - `id` string, required — Unique identifier of the transcription
  - `status` 'PENDING' | 'IN_PROGRESS' | 'FAILED' | 'COMPLETED', required — Status of the transcription
  - `transcript` TranscriptUtteranceDTO[], nullable, required — Array of transcribed utterances
    - `speaker` number, required — Speaker identifier (0 or 1)
    - `text` string, required — Transcribed text for this utterance
    - `start` number, required — Start time in seconds
    - `end` number, required — End time in seconds
    - `confidence` number, required — Confidence score (0-1)
  - `summary` string, nullable, required — AI-generated summary of the conversation
  - `startedAt` string, date-time, nullable, required — When transcription processing started
  - `endedAt` string, date-time, nullable, required — When transcription processing completed

## Other responses

- `401` — Invalid or missing API key
- `403` — Subscription required or plan not eligible
- `404` — Call or transcription not found, or outside API key scope

---

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