GET
/
v1
/
voice
/
calls
/
analyses
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/voice/calls/analyses \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "team_id": "<string>",
      "meta": {
        "insights": {
          "summary": "<string>",
          "trends": "<string>",
          "anomalies": "<string>"
        },
        "agents_performance": [
          {
            "agent_id": "<string>",
            "voice_id": "<string>",
            "performance_score": 123,
            "conversion_rate": 123,
            "average_call_duration": 123
          }
        ],
        "suggested_agents": [
          {
            "agent_id": "<string>",
            "new_agent_name": "<string>",
            "voice_speed": 123,
            "voice_id": "<string>",
            "agent_speak_first": true,
            "background_noise": true,
            "prompt": "<string>",
            "welcome_messages": [
              "<string>"
            ],
            "reasons": "<string>"
          }
        ]
      },
      "created_at": "<string>"
    }
  ],
  "meta": {
    "current_page": 123,
    "last_page": 123,
    "per_page": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer | null
per_page
integer | null
search_ids
string<uuid>[]

Response

200
application/json

The response is of type object.