***

title: list_addresses
slug: /reference/python/rest/fabric/subscribers/list-addresses
description: List addresses associated with a subscriber resource.
max-toc-depth: 3
---------------------

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

List addresses associated with a [subscriber](/docs/platform/subscribers) resource.

<EndpointSchemaSnippet endpoint="GET /api/fabric/resources/subscribers/{id}/addresses" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/fabric/resources/subscribers/{id}/addresses" />

## **Example**

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

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

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