Skip to main content

Get Workflow Run Transcript

GET 

/api/workflows/runs/:run_id/transcript

Get transcript for a workflow run.

Extracts conversation_history from the workflow run's context and returns it in the same format as the phone logs transcript endpoint. This enables transcript viewing for test/automated workflows that don't have audio recordings.

Response: { "messages": [{"role": "user"|"assistant", "content": "...", "start_sec": ..., "end_sec": ..., "stage_id": ...}], "tool_calls": [...], "metadata": {"total_duration_sec": ..., "format_version": 2, "source": "workflow_context"}, "transcription_status": "available" | "unavailable" }

Request

Responses

Successful Response