---
title: "List all active calls for given connection"
method: GET
path: "/connections/{connection_id}/active_calls"
tags: ["Call Information"]
---

# List all active calls for given connection

`GET /connections/{connection_id}/active_calls`

Lists all active calls for given connection. Acceptable connections are either SIP connections with webhook_url or xml_request_url, call control or texml. Returned results are cursor paginated.

## Path parameters

- `connection_id` string, required

## Query parameters

- `page` object
  - `after` string — Opaque identifier of next page
  - `before` string — Opaque identifier of previous page
  - `limit` integer — Limit of records per single page
  - `size` integer — The size of the page
  - `number` integer — The page number to load

## Response `200`

Successful response with list of details about active calls.

- object
  - `data` ActiveCall[]
    - `record_type` 'call', required
    - `call_session_id` string, required — ID that is unique to the call session and can be used to correlate webhook events. Call session is a group of related call legs that logically belong to the same phone call, e.g. an inbound and outbound leg of a transferred call
    - `call_leg_id` string, required — ID that is unique to the call and can be used to correlate webhook events
    - `call_control_id` string, required — Unique identifier and token for controlling the call.
    - `client_state` string, required — State received from a command.
    - `call_duration` integer, required — Indicates the duration of the call in seconds
  - `meta` CursorPaginationMeta
    - `cursors` Cursor
      - `after` string — Opaque identifier of next page.
      - `before` string — Opaque identifier of previous page.
    - `total_items` integer
    - `next` string — Path to next page.
    - `previous` string — Path to previous page.

## Other responses

- `422` — Unprocessable entity. The request was well-formed but could not be processed due to semantic errors. This includes validation errors, invalid parameter values, call state errors, conference errors, queue errors, recording/transcription errors, and business logic violations.
- `default` — Unexpected error

## Changes

> 93 revisions in range; 1 not diffed.

- **2026-08-17** `1571b0380bd7` — 3 breaking
  - the response's body type changed from `object` to no type for status `default`
  - the `errors/items/` response's property type changed from `object` to no type for status `default`
  - the `errors/items/code` response's property type changed from `integer` to `string`, and format from `int32` to `integer` for status `default`
- **2026-08-04** `8f5f4e537994` — 4 breaking
  - the response's body type changed from no type to `object` for status `default`
  - the `errors/items/` response's property type changed from no type to `object` for status `default`
  - the `errors/items/code` response's property type changed from `string` to `integer`, and format from `integer` to `int32` for status `default`
  - the `errors/items/source/pointer` response's property format changed from `json-pointer` to no format for status `default`

[Change history](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/changes/connections/:connection_id/active_calls/get.md)

---

[API](https://skmtc.dev/team-telnyx/apis/telnyx-api-2.md) · [All operations](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/llms.txt) · [OpenAPI document](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/revisions/88481995b4ca?raw)
