Get post-call analysis of all conversations

This API endpoint returns post-call analysis results of all conversations.

Endpoint

GET /ai-framework-management/api/v1/post_call_analysis_data/

HTTP Method

GET

Path Parameters

None

Query Parameters

Parameter

Type

Description

filter

String

Filters the post call-analysis results by the following fields:

  • id – conversation id

  • agent – agent name

  • time – post-call analysis generation time

For more information on filtering, see Filtering.

limit

Number

Defines how many pages of post-call analysis results to retrieve.

The maximum pages is 200. The default is 100 pages.

For more information on pagination, see Pagination.

page

Number

Defines first post-call analysis results page to retrieve.

sort

String

Sorts the post-call analysis results according one of the following fields.

  • agent – agent name

  • time – post call-analysis generation time

For more information on sorting, see Sorting.

Request Headers

Authorization: Bearer {token}

Request Example
GET /ai-framework-management/api/v1/post_call_analysis_data?page=1&limit=10&filter=(time%3E=2025-10-21%2010:00:00,time%3C2025-10-22T10:00:00.000Z)&sort=-time HTTP/1.1

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

The response contains short summary of post-call analysis results for all conversations.

Response Example
{
  "post_call_analysis_data": [
      {
          "id": "76560e99-fa16-4dfd-8b26-46c80a719f34",
          "account_id": "43ac12a9-12aa-404c-9891-052faf29df4e",
          "time": "2025-10-21T10:35:14.705000",
          "agent": "weather-agent",
          "names": "summarize"
      }
  ],
  "total_count": 1
}