Skip to main content
GET
/
v1
/
recordings
/
{id}
/
export
Export Transcript
curl --request GET \
  --url https://api.example.com/v1/recordings/{id}/export
Exports the transcript as a formatted Microsoft Word (.docx) document, including call metadata, timestamps, and speaker labels.
This endpoint requires a Pro or Business subscription with the word_export feature.

Path Parameters

id
string
required
The recording ID

Request

curl -X GET "https://app.transcord.app/api/v1/recordings/clx1234567890/export" \
  -H "Authorization: Bearer tr_live_your_api_key" \
  -o transcript.docx

Response

On success, returns the Word document as a binary file with headers:
Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document
Content-Disposition: attachment; filename="transcript-{id}.docx"

Document Contents

The exported Word document includes:
  • Header: “CALL TRANSCRIPT” title
  • Call Details: To number, From number, Date/time, Duration
  • Transcript: Speaker-labeled paragraphs with timestamps
  • Footer: “Generated by Transcord”

Errors

StatusDescription
202Transcript not ready yet
401Invalid or missing API key
403Word export not available on your plan
404Recording not found