Llamadas
Get Call
Retrieve full details of a single call by its ID
GET
Returns the full details of a single call. The transcript (
chat_history) is included by default — pass include_transcript=false to omit it. Use include_words=true for per-word timing data, or transcript_format=toon for a token-efficient encoding.
Path Parameters
The UUID of the call to retrieve.
Headers
Your API key for authentication. Found in your dashboard under API settings.
Query Parameters
Include
chat_history (transcript) in the response. Defaults to true.Include per-word timing data in transcript entries. Only applies when
include_transcript=true.Include
chat_history_with_tools in the response.Format for transcript output. Possible values:
json (raw array), toon (token-efficient TOON encoding).Response
Unique identifier of the call (UUID).
Call direction:
inbound or outbound.The phone number that initiated the call (E.164 format).
URL to the call recording, if available.
Status of the call. Possible values:
in-progress, completed, no-answer, failed, in-queue, incomplete, busy, answering-machine, scheduled, voice_mail.Outcome of the call. Possible values:
answered, voicemail, no_answer, busy, failed.Reason the call was disconnected, if applicable.
Timestamp when the call ended (ISO 8601).
Timestamp when the call started (ISO 8601).
Call duration in seconds.
AI-generated analysis of the call (summary, sentiment, etc.).
Call type identifier.
Timestamp when the call record was created (ISO 8601).
UUID of the AI agent that handled the call.
Contact associated with the call.
Transcript of the call. Present when
include_transcript=true (default). Returns an array of transcript entries (JSON format) or a TOON-encoded string when transcript_format=toon.Full transcript including tool/function calls. Present when
include_tools=true.Format used for transcript fields. Present when transcript is included.
Error Codes
401 Unauthorized— Invalid or missing API key404 Not Found— Call not found or does not belong to your organization500 Internal Server Error— Server-side error
