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

# Get call transcript

`GET /calls/{id}/transcript`

Returns the transcript for a call. Returns an empty data array while the call status is "processing". Accepts both integer ID and UUID.

## Path parameters

- `id` string, required — Call ID (positive integer) or UUID

## Response `200`

Call transcript

- TranscriptResponse
  - `data` TranscriptBlock[], required
    - `startTime` number, required — Block start time in seconds from the beginning of the call
    - `endTime` number, required — Block end time in seconds from the beginning of the call
    - `content` string, required — Transcript text content for this block
    - `speaker` object, required — Speaker who said this block
      - `id` number, required — Speaker ID
      - `name` string, nullable, required — Speaker display name
      - `type` 'user' | 'contact' | 'unknown', required — Speaker type: user (internal team member), contact (external participant), or unknown

## Other responses

- `401` — Authentication failed. The API key is missing or invalid.
- `404` — Call not found
- `429` — Rate limit exceeded. Retry after the X-RateLimit-Reset interval.

---

[API](https://skmtc.dev/modjo/apis/modjo-public-api.md) · [All operations](https://skmtc.dev/modjo/apis/modjo-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/modjo/modjo-public-api/revisions/dcae8b3284e8/schema)
