Get the transcript for a bot
If the meeting is still in progress, this returns the transcript so far.
Path Parameters
- Type: stringobject
_id requiredBot ID
Query Parameters
- Type: string Format: ISO 8601 datetimeupdated
_after Only return transcript entries updated or created after this time. Useful when polling for updates to the transcript.
Headers
- Type: stringAuthorizationrequired
API key for authentication
- Type: stringContent
- Type requiredShould always be application/json
Responses
- application/json
- 404
Bot not found
Request Example for get/api/v1/bots/{object_id}/transcript
curl https://app.attendee.dev/api/v1/bots/bot_xxxxxxxxxxx/transcript \
--header 'Authorization: Token YOUR_API_KEY_HERE' \
--header 'Content-Type: application/json'
[
{
"speaker_name": "string",
"speaker_uuid": "string",
"speaker_user_uuid": null,
"speaker_is_host": true,
"timestamp_ms": 1,
"duration_ms": 1,
"transcription": null
}
]