---
title: "Retrieve calls from a queue"
method: GET
path: "/queues/{queue_name}/calls"
tags: ["Queue Commands"]
---

# Retrieve calls from a queue

`GET /queues/{queue_name}/calls`

Retrieve the list of calls in an existing queue

## Path parameters

- `queue_name` 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 a list of calls in a queue.

- object
  - `data` QueueCall[]
    - `record_type` 'queue_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.
    - `connection_id` string, required — Call Control App ID (formerly Telnyx connection ID) used in the call.
    - `from` string, required — Number or SIP URI placing the call.
    - `to` string, required — Destination number or SIP URI of the call.
    - `enqueued_at` string, required — ISO 8601 formatted date of when the call was put in the queue
    - `wait_time_secs` integer, required — The time the call has been waiting in the queue, given in seconds
    - `queue_position` integer, required — Current position of the call in the queue
    - `queue_id` string, required — Unique identifier of the queue the call is in.
    - `is_alive` boolean, required — Indicates whether the call is still active in the queue.
  - `meta` PaginationMeta
    - `total_pages` integer
    - `total_results` integer
    - `page_number` integer
    - `page_size` integer

## Other responses

- `404` — Resource not found. The requested resource does not exist. Common causes include: invalid call_control_id, conference not found, audio file not found, or recording not found.

---

[API](https://skmtc.net/team-telnyx/apis/telnyx-api-2.md) · [All operations](https://skmtc.net/team-telnyx/apis/telnyx-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/team-telnyx/telnyx-api-2/versions/8f5f4e537994/schema)
