fathom_get_transcript
Retrieve timestamped meeting transcripts with speaker identification from Fathom recordings to review discussions and capture key points.
Instructions
Get the full transcript for a specific Fathom recording.
This tool retrieves the complete timestamped transcript of a meeting, including speaker identification and timestamps for each segment.
Args:
recording_id (number, required): The ID of the recording to get the transcript for
response_format ('markdown'|'json'): Output format (default: 'markdown')
Returns: Array of transcript entries, each containing:
speaker: Speaker name and optionally matched email
text: What was said
timestamp: When it was said (HH:MM:SS format)
Examples:
Get transcript: { recording_id: 123456789 }
Get as JSON: { recording_id: 123456789, response_format: 'json' }
Notes:
Transcripts can be large for long meetings
Speaker names are matched to calendar invitees when possible
Timestamps are relative to the recording start time
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| recording_id | Yes | The recording ID to get the transcript for | |
| response_format | No | Output format: 'markdown' or 'json' | markdown |