Get Call Transcript
elevenlabs_get_call_transcriptRetrieve the turn-by-turn transcript of a call by providing the conversation ID. Supports pagination and optional inclusion of tool call details.
Instructions
Get the turn-by-turn transcript of a call.
Args:
conversation_id (string)
offset / limit: pagination over turns (default 0 / 200)
include_tool_calls (boolean): default false
Returns JSON: { conversation_id, status, total_turns, has_more, turns: [{ index, role, time_in_call_secs, message }] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max turns to return (default 200) | |
| offset | No | Turn index to start from (pagination) | |
| conversation_id | Yes | Conversation ID | |
| include_tool_calls | No | Include agent tool call details in each turn |