cURL
curl --request GET \ --url https://your-hosted-ip/api/v1/agent/{agentId}/transcript \ --header 'Authorization: <api-key>'
[ { "speaker": "<string>", "start_timestamp": 0, "end_timestamp": 0, "words": [ { "start_timestamp": 0, "end_timestamp": 0, "text": "<string>" } ] } ]
Fetches meeting transcript for a specific agent by agentId.
Use the format 'Token ' for authentication.
The ID of the agent whose transcript is being fetched
Meeting transcript successfully fetched for the agent
Name of the speaker
Start time of the speech segment in seconds
End time of the speech segment in seconds
Show child attributes