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

# Get a call transcript

`GET /calls/{callId}/transcript`

Returns transcript segments for a call.

## Path parameters

- `callId` string, required — Call identifier.

## Query parameters

- `limit` integer — Maximum number of records to return.
- `cursor` string — Pagination cursor.

## Response `200`

Call transcript.

- CallTranscriptResponse — Current call transcript compatibility response.
  - `call_id` string, required — Call identifier.
  - `conversation_name` string, nullable, required — Conversation name.
  - `duration_seconds` number, nullable, required — Call duration in seconds.
  - `pageInfo` LegacyPageInfo, required — Current compatibility pagination metadata with camelCase field names.
    - `endCursor` string, nullable — Cursor for the last item.
    - `hasNextPage` boolean, required — Whether another page exists after this page.
    - `hasPreviousPage` boolean, required — Whether another page exists before this page.
    - `startCursor` string, nullable — Cursor for the first item.
  - `segments` CallTranscriptSegment[], required — Transcript segments.
    - `content` string, required — Transcript text.
    - `end_ms` integer, required — Segment end offset in milliseconds.
    - `speaker_name` string, nullable, required — Speaker display name.
    - `start_ms` integer, required — Segment start offset in milliseconds.

## Other responses

- `400` — Bad request.
- `401` — Missing or invalid API key.
- `403` — Forbidden.
- `404` — Not found.
- `409` — Conflict.
- `429` — Rate limit or quota exceeded.
- `500` — Internal server error.

---

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