Call Logs
Get Call Details
Fetch the complete call record including transcript, recording URL, and extracted analysis data.
GET
Get call details
Returns the full detail view for a completed call. This is the richest response in the Calls API, and includes:
- Transcript: A full text transcript of the conversation, speaker-labeled.
- Recording URL: A link to the audio recording (if enabled).
- Post-call analysis: Any custom fields your agent extracted from the transcript (e.g., sentiment, intent, CSAT score, whether an appointment was booked).
- Timeline events: Key moments in the call such as when the agent spoke, when the caller interrupted, and when tools were invoked.
When to use this
Use this endpoint when you need to display a call’s full transcript in your dashboard, push extracted data to your CRM, or audit an agent’s behavior on a specific call. For bulk analytics, use List Call Logs with filters rather than fetching details for each call individually.Request
Response
Authorizations
Pass your API key as a Bearer token in the Authorization header.
Path Parameters
Response
200 - application/json
Success.
Example:
"log_abc123"
Example:
"call_abc123"
Example:
"agt_abc123"
Available options:
created, initiated, sent, received, completed, did_not_pick, busy, no_answer, failed, cancelled, retry_expired Example:
"completed"
Example:
"positive"
Example:
145
Example:
"https://recordings.dialnexa.com/call_abc123.mp3"
Example:
"Agent: Hello! How can I help you today?\nUser: I need to check on my order status.\nAgent: Of course! Can I get your order number?"
Example:
{
"customer_satisfaction": 8,
"issue_resolved": true
}Example:
[
{
"event": "call_started",
"timestamp": "2024-03-01T10:00:00.000Z"
},
{
"event": "call_answered",
"timestamp": "2024-03-01T10:00:05.000Z"
},
{
"event": "call_ended",
"timestamp": "2024-03-01T10:02:25.000Z"
}
]Example:
"2024-03-01T10:00:00.000Z"
Get call details