Skip to main content
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

string
requerido
The UUID of the call to retrieve.

Headers

string
requerido
Your API key for authentication. Found in your dashboard under API settings.

Query Parameters

boolean
predeterminado:"true"
Include chat_history (transcript) in the response. Defaults to true.
boolean
predeterminado:"false"
Include per-word timing data in transcript entries. Only applies when include_transcript=true.
boolean
predeterminado:"false"
Include chat_history_with_tools in the response.
string
predeterminado:"json"
Format for transcript output. Possible values: json (raw array), toon (token-efficient TOON encoding).

Response

string
Unique identifier of the call (UUID).
string
Call direction: inbound or outbound.
string
The phone number that initiated the call (E.164 format).
string
URL to the call recording, if available.
string
Status of the call. Possible values: in-progress, completed, no-answer, failed, in-queue, incomplete, busy, answering-machine, scheduled, voice_mail.
string
Outcome of the call. Possible values: answered, voicemail, no_answer, busy, failed.
string
Reason the call was disconnected, if applicable.
string
Timestamp when the call ended (ISO 8601).
string
Timestamp when the call started (ISO 8601).
number
Call duration in seconds.
object
AI-generated analysis of the call (summary, sentiment, etc.).
string
Call type identifier.
string
Timestamp when the call record was created (ISO 8601).
string
UUID of the AI agent that handled the call.
object
Contact associated with the call.
array or string
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.
array or string
Full transcript including tool/function calls. Present when include_tools=true.
string
Format used for transcript fields. Present when transcript is included.

Error Codes

  • 401 Unauthorized — Invalid or missing API key
  • 404 Not Found — Call not found or does not belong to your organization
  • 500 Internal Server Error — Server-side error

Code Examples