Get post-call analysis of a conversation

This API endpoint retrieves post-call analysis results of a specific conversation.

Endpoint

GET /ai-framework-management/api/v1/conversations/{conversationId}

HTTP Method

GET

Path Parameters

Path Parameter

Type

Description

conversationId

UUID

UUID of the conversation.

Query Parameters

None

Request Headers

Authorization: Bearer {token}

Request Example
GET /ai-framework-management/api/v1/post_call_analysis_data/76560e99-fa16-4dfd-8b26-46c80a719f34 HTTP/1.1

Host: livehub.audiocodes.io
Authorization: Bearer av4356prc98mqt512jki
Response Body

The response contains post-call analysis results of a specific conversation.

Response Example
{
  "time": "2025-10-21T10:35:14.705000",
  "account_id": "43ac12a9-12aa-404c-9891-052faf29df4e",
  "agent": "weather-agent",
  "caller": "",
  "callee": "",
  "results": [
    {
      "name": "summarize",
      "time": "2025-10-21T10:35:14.624000",
      "data": {
        "output": "The conversation begins with the user... "
      }
    }
  ],
  "id": "5695b6ba-360f-4daf-8b42-47eb59c01767"
}