Get a call insights

Use this endpoint to to retrieve media and signalling insights of a voice call.

Get channel call insights

get

Get a channel call insights

Authorizations
Path parameters
workspaceIdstring · uuidRequired

The ID of the workspace

callIdstring · uuidRequired

The ID for a call

channelIdstring · uuidRequired

The ID for a channel

Responses
200

OK

application/json
get
GET /workspaces/{workspaceId}/channels/{channelId}/calls/{callId}/insights HTTP/1.1
Host: api.bird.com
Authorization: AccessKey YOUR_SECRET_TOKEN
Accept: */*
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "channelId": "123e4567-e89b-12d3-a456-426614174000",
  "from": "text",
  "to": "text",
  "parentId": "123e4567-e89b-12d3-a456-426614174000",
  "direction": "incoming",
  "status": "accepted",
  "type": "pstn",
  "duration": 1,
  "hangupCauseCode": 1,
  "hangupSource": "callee",
  "hangupSipCode": "text",
  "createdAt": "2025-08-13T15:53:51.489Z",
  "updatedAt": "2025-08-13T15:53:51.489Z",
  "ringingAt": "2025-08-13T15:53:51.489Z",
  "answeredAt": "2025-08-13T15:53:51.489Z",
  "endedAt": "2025-08-13T15:53:51.489Z",
  "signallingMetrics": {
    "pdd": 1,
    "edgeRegion": "text",
    "providerName": "text",
    "userAgent": "text",
    "remoteSignallingIp": "text",
    "remoteMediaIp": "text"
  },
  "mediaMetrics": {
    "mos": 1,
    "qualityScore": 1,
    "inBytes": 1,
    "outBytes": 1,
    "inPacketCount": 1,
    "outPacketCount": 1,
    "inMediaPacketCount": 1,
    "outMediaPacketCount": 1,
    "inDtmfPacketCount": 1,
    "outDtmfPacketCount": 1,
    "jitterMinVar": 1,
    "jitterMaxVar": 1,
    "jitterLossRate": 1,
    "jitterBurstRate": 1,
    "meanInterval": 1,
    "flawTotal": 1,
    "readCodecName": "text",
    "readCodecRate": "text",
    "writeCodecName": "text",
    "writeCodecRate": "text",
    "dtmfType": "text"
  }
}

Example 1: Get insights from an outbound call

curl "https://api.bird.com/workspaces/{workspaceId}/channels/{channelId}/calls/{callId}/insights" \
     -H "Authorization: AccessKey YOUR_SECRET_TOKEN"

Last updated

Was this helpful?