Calls
Get call transcript
Returns the transcript for a call. Returns an empty data array while the call status is "processing". Accepts both integer ID and UUID.
get/calls/{id}/transcript
Path parameters
idstring required
Call ID (positive integer) or UUID
Example:1
Call ID (positive integer) or UUID
Response
Call transcript
Example response
{
"data": [
{
"endTime": 12.5,
"content": "Hi, thanks for joining the call today.",
"speaker": {
"id": 1,
"name": "Jane Doe",
"type": "user"
}
}
]
}