Skip to Content

Get Summary

Retrieve an AI-generated summary of the call including key metrics.

GEThttps://api.identitycall.com/api/v1/public/recordings/:id/summary

Get an AI-generated summary of the call with duration, speakers, and goal achievement.

Requires read permission

Path Parameters

Parameters

NameTypeRequiredDefaultDescription
idintegerYes-Recording ID

Request

curl -X GET "https://api.identitycall.com/api/v1/public/recordings/123/summary" \ -H "Authorization: Bearer $IDENTITYCALL_API_KEY"

Response

Response200 OK
{
"data": {
  "recording_id": 123,
  "summary": "A support call where a customer (John Smith) requested help with a password reset. The agent successfully verified the customer's identity and guided them through the password reset process. The call was resolved positively with the customer expressing satisfaction. The agent maintained a professional and helpful tone throughout the interaction.",
  "duration_ms": 185000,
  "speakers": ["Agent", "John Smith"],
  "goal_achievement": 87.5
}
}

Response Fields

FieldTypeDescription
recording_idintegerRecording ID
summarystringAI-generated call summary
duration_msintegerTotal call duration in milliseconds
speakersarrayList of identified speakers
goal_achievementnumberPercentage of goals achieved (0-100)

Errors

StatusErrorDescription
404”Resource not found”Recording doesn’t exist

Try It

Try It