List call summaries

GET /v1/Voice/Summaries

TODO: Resource-level docs

Query parameters

  • From string
  • To string
  • FromCarrier string
  • ToCarrier string
  • FromCountryCode string
  • ToCountryCode string
  • Branded boolean
  • VerifiedCaller boolean
  • HasTag boolean
  • StartTime string
  • EndTime string
  • CallType string
  • CallState string
  • Direction string
  • ProcessingState string

    Values are completed, started, partial, or all.

  • SortBy string

    Values are start_time or end_time.

  • Subaccount string
  • AbnormalSession boolean
  • PageSize integer

    How many resources to return in each list page. The default is 50, and the maximum is 1000.

    Minimum value is 1, maximum value is 1000.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • call_summaries array[object]
      Hide call_summaries attributes Show call_summaries attributes array[object]
      • account_sid string | null

        Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

      • attributes
      • call_sid string | null

        Minimum length is 34, maximum length is 34. Format should match the following pattern: ^CA[0-9a-fA-F]{32}$.

      • call_state string | null

        Values are ringing, completed, busy, fail, noanswer, canceled, answered, or undialed.

      • call_type string | null

        Values are carrier, sip, trunking, or client.

      • carrier_edge
      • client_edge
      • connect_duration integer | null
      • created_time string(date-time) | null
      • duration integer | null
      • end_time string(date-time) | null
      • from
      • processing_state string | null

        Values are complete or partial.

      • properties
      • sdk_edge
      • sip_edge
      • start_time string(date-time) | null
      • tags array[string] | null
      • to
      • trust
      • url string(uri) | null
    • meta object
      Hide meta attributes Show meta attributes object
      • first_page_url string(uri)
      • key string
      • next_page_url string(uri)
      • page integer
      • page_size integer
      • previous_page_url string(uri)
      • url string(uri)
GET /v1/Voice/Summaries
curl \
 -X GET https://insights.twilio.com/v1/Voice/Summaries \
 --user "username:password"
Response examples (200)
{
  "call_summaries": [
    {
      "account_sid": "string",
      "call_sid": "string",
      "call_state": "ringing",
      "call_type": "carrier",
      "connect_duration": 42,
      "created_time": "2023-05-04T09:42:00+00:00",
      "duration": 42,
      "end_time": "2023-05-04T09:42:00+00:00",
      "processing_state": "complete",
      "start_time": "2023-05-04T09:42:00+00:00",
      "tags": [
        "string"
      ],
      "url": "https://example.com"
    }
  ],
  "meta": {
    "first_page_url": "https://example.com",
    "key": "string",
    "next_page_url": "https://example.com",
    "page": 42,
    "page_size": 42,
    "previous_page_url": "https://example.com",
    "url": "https://example.com"
  }
}
Response examples (200)
{
  "call_summaries": [
    {
      "account_sid": "string",
      "call_sid": "string",
      "call_state": "ringing",
      "call_type": "carrier",
      "connect_duration": 42,
      "created_time": "2025-05-04T09:42:00Z",
      "duration": 42,
      "end_time": "2025-05-04T09:42:00Z",
      "processing_state": "complete",
      "start_time": "2025-05-04T09:42:00Z",
      "tags": [
        "string"
      ],
      "url": "https://example.com"
    }
  ],
  "meta": {
    "first_page_url": "https://example.com",
    "key": "string",
    "next_page_url": "https://example.com",
    "page": 42,
    "page_size": 42,
    "previous_page_url": "https://example.com",
    "url": "https://example.com"
  }
}