get_transcript_tool
Retrieve timestamped speaker transcripts from recordings using the Fathom AI API. Supports synchronous responses or asynchronous callbacks for processing meeting content.
Instructions
Retrieve the transcript for a recording as an array of timestamped speaker entries. Supports synchronous response or asynchronous POST to destination_url.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination_url | No | Optional async callback URL | |
recording_id | Yes | The recording identifier |
Input Schema (JSON Schema)
{
"properties": {
"destination_url": {
"default": null,
"description": "Optional async callback URL",
"type": "string"
},
"recording_id": {
"description": "The recording identifier",
"type": "integer"
}
},
"required": [
"recording_id"
],
"type": "object"
}