---
title: "List meeting session transcript"
method: GET
path: "/meeting_sessions/{id}/transcript"
tags: ["Meeting Session Data"]
---

# List meeting session transcript

`GET /meeting_sessions/{id}/transcript`

Returns transcript segments ordered by ascending `seq`. Default `limit` is 100 and maximum is 1,000. Continue with `after=meta.next_after`. A long-poll timeout returns 200 with empty `data` and `meta.next_after: null`; retain the cursor supplied to that request because null is not a replacement cursor.

## Path parameters

- `id` string, required

## Query parameters

- `after` integer
- `limit` integer
- `wait_seconds` integer

## Response `200`

Successful response with transcript segments (may be empty on wait timeout).

- TranscriptSegmentListResponse
  - `data` TranscriptSegment[], required
    - `confidence` number, nullable, required
    - `occurred_at` string, date-time, required
    - `relative_ts` number, nullable, required
    - `seq` integer, required
    - `speaker_label` string, nullable, required
    - `text` string, required
  - `meta` object, required
    - `next_after` integer, nullable, required — Cursor to pass as `after` on the next request, or null when the response contains no segments.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized. On api.telnyx.com, authentication is enforced by the API gateway before the request reaches the Meeting service, so a missing or invalid API key returns the standard Telnyx error envelope (`{"errors": [{"code": "10009", ...}]}`) rather than the single-`error` shape below.
- `403` — The authenticated credential is not permitted to perform this operation.
- `404` — Not Found
- `429` — Authentication is temporarily overloaded. Retry after the number of seconds in `Retry-After`.
- `500` — Internal Server Error
- `503` — Authentication is temporarily unavailable.

---

[API](https://skmtc.net/team-telnyx/apis/telnyx-api-2.md) · [All operations](https://skmtc.net/team-telnyx/apis/telnyx-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/team-telnyx/telnyx-api-2/revisions/ec31f78cf002/schema)
