---
title: "Get transcript"
method: GET
path: "/recordings/{recording_id}/transcript"
tags: ["Recordings"]
---

# Get transcript

`GET /recordings/{recording_id}/transcript`

This endpoint has two behaviors depending on your request payload:
- If you send `destination_url`, the endpoint will behave in an asynchronous manner.
- If you do not send `destination_url`, the endpoint will return the data directly.

## Path parameters

- `recording_id` integer, required

## Query parameters

- `destination_url` string, uri

## Response `200`

Either the destination URL for where we'll POST the transcript, or the transcript for the recording as an array.

- union
  - object
    - `transcript` TranscriptItem[], required
      - `speaker` TranscriptItemSpeaker, required
        - `display_name` string, required
        - `matched_calendar_invitee_email` string, email, nullable — The email address of the calendar invitee matching this speaker. Null if no exact match found.
      - `text` string, required
      - `timestamp` string, required — Timestamp relative to the start of the meeting (HH:MM:SS).
  - CallbackResponse
    - `destination_url` string, uri, required

## Other responses

- `400` — Bad request - the query parameters were invalid.
- `401` — Unauthorized - missing or invalid `Authorization` header.
- `429` — Rate limited - you have exceeded the rate limit for the requested endpoint. Check our [rate limiting](/api-reference#rate-limiting) documentation for more information.

---

[API](https://skmtc.dev/fathom/apis/fathom-external-api.md) · [All operations](https://skmtc.dev/fathom/apis/fathom-external-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fathom/fathom-external-api/revisions/454c25378beb/schema)
