---
title: "List transcript lines"
method: GET
path: "/service_agents/transcripts"
tags: ["Service Agent"]
---

# List transcript lines

`GET /service_agents/transcripts`

Retrieves the individual spoken/written lines (transcript entries) for one transcribe session, scoped to the service agent's own customer. Ownership is authorized against the target transcribe's own customer_id (fetched by transcribe_id), not a re-derived parent resource.

## Query parameters

- `transcribe_id` string, uuid, required
- `page_size` integer
- `page_token` string

## Response `200`

A list of transcript lines, in creation order.

- object
  - `next_page_token` string — Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.
  - `result` TranscribeManagerTranscript[]
    - `id` string, uuid — The unique identifier of the transcript.
    - `customer_id` string, uuid — The unique identifier of the customer who owns this transcript. Returned from the `GET /customers` response.
    - `transcribe_id` string, uuid — The unique identifier of the parent transcribe session. Returned from the `POST /transcribes` or `GET /transcribes` response.
    - `direction` 'both' | 'in' | 'out'
    - `message` string — Transcript message
    - `tm_transcript` string, date-time — Timestamp when this transcript was spoken.
    - `tm_create` string, date-time — Timestamp when the transcript record was created.

## Other responses

- `400` — Invalid request (INVALID_ARGUMENT).
- `401` — Authentication required (UNAUTHENTICATED).
- `403` — Insufficient permission (PERMISSION_DENIED).
- `404` — Resource not found (NOT_FOUND).
- `500` — Internal error (INTERNAL).

---

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