Get Summary
Retrieve an AI-generated summary of the call including key metrics.
GET
https://api.identitycall.com/api/v1/public/recordings/:id/summaryGet an AI-generated summary of the call with duration, speakers, and goal achievement.
Requires read permission
Path Parameters
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
id | integer | Yes | - | Recording ID |
Request
cURL
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
| Field | Type | Description |
|---|---|---|
recording_id | integer | Recording ID |
summary | string | AI-generated call summary |
duration_ms | integer | Total call duration in milliseconds |
speakers | array | List of identified speakers |
goal_achievement | number | Percentage of goals achieved (0-100) |
Errors
| Status | Error | Description |
|---|---|---|
| 404 | ”Resource not found” | Recording doesn’t exist |