***

title: list
slug: /reference/python/rest/fabric/subscribers/list
description: List subscriber resources.
max-toc-depth: 3
---------------------

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

List [subscriber](/docs/platform/subscribers) resources in the project.

<EndpointSchemaSnippet endpoint="GET /api/fabric/resources/subscribers" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/fabric/resources/subscribers" />

## **Example**

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

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

response = client.fabric.subscribers.list()
for subscriber in response.get("data", []):
    print(f"{subscriber['display_name']}: {subscriber['id']}")
```