Export call transcripts in various formats.
call_id
(integer, required): The unique identifier for the call whose transcript you want to export.format
(string, optional, default: txt
): The desired file format.
txt
, json
, csv
.speaker
(string, optional): Filter transcripts to include only a specific speaker (user
or assistant
).format=txt
:
You will receive a plain text file (.txt
) with the conversation formatted for readability.
format=json
:
You will receive a JSON file (.json
) containing an array of transcript objects.
format=csv
:
You will receive a CSV file (.csv
) with the transcript data.
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful Response