Skip to main content
GET
/
recordings
/
{recording_id}
/
transcript
Get transcript
curl --request GET \
  --url https://api.fathom.ai/external/v1/recordings/{recording_id}/transcript \
  --header 'X-Api-Key: <api-key>'
{
  "transcript": [
    {
      "speaker": {
        "display_name": "Alice Johnson",
        "matched_calendar_invitee_email": "alice.johnson@acme.com"
      },
      "text": "Let's revisit the budget allocations.",
      "timestamp": "00:05:32"
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

Include your API key in the X-Api-Key header of every request.

Path Parameters

recording_id
integer
required

The ID of the meeting recording to fetch the transcript for.

Example:

123456789

Query Parameters

destination_url
string<uri>

Destination URL for where we'll POST the transcript. If not sent, this endpoint will return the data directly.

Example:

"https://example.com/destination"

Response

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

  • Option 1
  • Option 2
transcript
object[]
required
I