Get Conversation Transcript
Returns the speaker-attributed, timestamped transcript of a single conversation. Get the conversationId from Search Conversations.
No request body and no query parameters.
Billing: 1 credit per successful request via ci_transcript_analysis, including repeat requests for the same conversation. A 404 is never charged. While ci_transcript_analysis isn't seeded on your account's pricebook, the endpoint stays free.
Note: A single 404 covers all three cases — the conversation doesn't exist, its processing hasn't completed, or it belongs to another account. Transcripts can be long; when feeding one to an LLM, budget for it or summarize it (Search Conversations already returns the summary, chapters, and coaching without the transcript).
Path parameters
Conversation identifier returned by Search Conversations.
Response
Successful response
Example response
{
"requestId": "3f1a9c2e-7b4d-4a8e-9f10-2c5d6e7a8b90",
"conversationId": "8f2c9b1e-4a7d-4f3b-9c2e-1d6a5b8c7e90",
"segments": [
{
"speaker": "Jane Doe",
"side": "external",
"text": "We need to understand the pricing tiers before we commit.",
"startTime": "00:12:04",
"endTime": "00:12:19"
}
],
"billing": {
"creditsCharged": 3,
"resultsReturned": 1
}
}