---
title: "List all recording transcriptions"
method: GET
path: "/recording_transcriptions"
tags: ["Call Recordings"]
---

# List all recording transcriptions

`GET /recording_transcriptions`

Returns a list of your recording transcriptions.

## Query parameters

- `filter` object
  - `recording_id` string, uuid — If present, transcriptions will be filtered to those associated with the given recording.
  - `created_at` object
    - `gte` string — Returns only transcriptions created later than or at given ISO 8601 datetime.
    - `lte` string — Returns only transcriptions created earlier than or at given ISO 8601 datetime.
- `page[number]` integer
- `page[size]` integer

## Response `200`

A response listing multiple recording transcriptions.

- object
  - `data` RecordingTranscription[]
    - `created_at` string — ISO 8601 formatted date indicating when the resource was created.
    - `duration_millis` integer — The duration of the recording transcription in milliseconds.
    - `id` string — Uniquely identifies the recording transcription.
    - `recording_id` string — Uniquely identifies the recording associated with this transcription.
    - `record_type` 'recording_transcription'
    - `status` 'in-progress' | 'completed' — The status of the recording transcription. Only `completed` has transcription text available.
    - `transcription_text` string — The recording's transcribed text.
    - `updated_at` string — ISO 8601 formatted date indicating when the resource was updated.
  - `meta` CallRecordingsCursorPaginationMeta
    - `cursors` Cursor
      - `after` string — Opaque identifier of next page.
      - `before` string — Opaque identifier of previous page.
    - `next` string — Path to next page.
    - `previous` string — Path to previous page.

## Other responses

- `401` — Unauthorized. The request lacks valid authentication credentials.
- `404` — Resource not found. The requested resource or URL could not be found.
- `default` — Unexpected error.

---

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