Skip to main content
GET
This endpoint allows you to export the full transcript of a specific call to a file. You can choose from several formats. The response from this endpoint will be a file download.

Path Parameters

  • call_id (integer, required): The unique identifier for the call whose transcript you want to export.

Query Parameters

  • format (string, optional, default: txt): The desired file format.
    • Allowed values: txt, json, csv.
  • speaker (string, optional): Filter transcripts to include only a specific speaker (user or assistant).

Response Formats

If format=txt: You will receive a plain text file (.txt) with the conversation formatted for readability.
Text Content
If format=json: You will receive a JSON file (.json) containing call metadata and a transcripts array.
JSON Content
If format=csv: You will receive a CSV file (.csv) with the transcript data.
CSV Content

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

call_id
integer
required

Query Parameters

format
string
default:txt

Export format

Pattern: ^(txt|json|csv)$
speaker
string | null

Filter by speaker

Response

Successful Response