***

title: list
slug: /reference/python/rest/queues/list
description: List queues in the project.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

List queues in the project.

<EndpointSchemaSnippet endpoint="GET /api/relay/rest/queues" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/relay/rest/queues" />

## **Example**

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

result = client.queues.list()
for q in result.get("data", []):
    print(q["name"], q.get("current_size"))
```