---
title: "Retrieve a list of transcripts"
method: GET
path: "/transcripts"
tags: ["Transcribe"]
---

# Retrieve a list of transcripts

`GET /transcripts`

Fetch a list of transcripts associated with the customer.

## Query parameters

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

## Response `200`

A list of transcripts.

- 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

- `401` — Authentication required (UNAUTHENTICATED).
- `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/revisions/79e779080bcc/schema)
