---
title: "Get Call Live Transcript"
method: GET
path: "/calls/{call_id}/live-transcript"
tags: ["Calls"]
---

# Get Call Live Transcript

`GET /calls/{call_id}/live-transcript`

Get the live transcript events for a call (developer-only).

Returns the finalized utterances ingested from Vapi transcript webhook
events, ordered chronologically. Available while the call is still in
progress — unlike /transcript, which 404s until the end-of-call transcript
record exists. Intended for polling from the calls page.

## Path parameters

- `call_id` string, uuid, required

## Response `200`

Successful Response

- CallLiveTranscriptResponse — Live transcript events for an in-progress call (developer-only polling).
  - `call_id` string, uuid, required
  - `call_status` string, required
  - `realtime_transcripts_enabled` boolean, required
  - `events` LiveTranscriptEventResponse[], required
    - `event_id` string, uuid, required
    - `role` string, required
    - `text` string, required
    - `occurred_at` string, date-time, nullable
    - `created_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/openintake/apis/fastapi.md) · [All operations](https://skmtc.dev/openintake/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openintake/fastapi/revisions/4a81645b59f6/schema)
