---
title: "Get transcriptions"
method: GET
path: "/transcriptions"
---

# Get transcriptions

`GET /transcriptions`

Returns a list of transcriptions

## Query parameters

- `roomName` string — The name of the room
- `cursor` string — The cursor for paginating through the results. To fetch the next page, set the `cursor` to the `cursor` returned by the previous request.
- `limit` integer — The limit for the pagination - the maximum number of results that will be returned within a single API response.

## Response `200`

A JSON array representing the transcriptions.

- object
  - `results` Transcription[], required
    - `transcriptionId` string, required — The ID of the transcription.
    - `roomSessionId` string, required — The ID of the room session.
    - `filename` string — The filename of the transcription that was written to either Whereby or self hosted storage buckets (see: `storageType`).
    - `roomName` string, required — The name of the room.
    - `startDate` string, date-time, required — When the transcription starts. Always in UTC, regardless of the input timezone.
    - `endDate` string, date-time, required — When the transcription ends. Always in UTC, regardless of the input timezone.
    - `state` 'ready' | 'failed' | 'in_progress', required — The state of the transcription - `ready` - The transcription is ready to be downloaded - `failed` - The transcription failed to be generated - `in_progress` - The transcription is still being generated
    - `createdAt` string, date-time, required — When the transcription was created. Always in UTC, regardless of the input timezone.
    - `durationInSeconds` number — The total billable time in seconds for this transcription.
    - `type` 'LIVE_TRANSCRIPTION' | 'RECORDING_TRANSCRIPTION', required — The type of the transcription - `LIVE_TRANSCRIPTION` - Session Transcription - `RECORDING_TRANSCRIPTION` - generated based on a recording
    - `storageType` 'WHEREBY_HOSTED' | 'SELF_HOSTED' — The storage type of the transcription - `WHEREBY_HOSTED` - files kept with Whereby - `SELF_HOSTED` - files stored in external location

## Other responses

- `401` — Access token is missing or invalid
- `429` — You are rate limited

---

[API](https://skmtc.net/whereby/apis/whereby-rest-api.md) · [All operations](https://skmtc.net/whereby/apis/whereby-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/whereby/whereby-rest-api/revisions/3d9aec0774ff/schema)
