***

title: Addresses
slug: /reference/python/rest/addresses
description: Manage regulatory addresses.
max-toc-depth: 3
---------------------

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

[restclient]: /docs/server-sdks/reference/python/rest/client

[list]: /docs/server-sdks/reference/python/rest/addresses/list

[create]: /docs/server-sdks/reference/python/rest/addresses/create

[get]: /docs/server-sdks/reference/python/rest/addresses/get

[delete]: /docs/server-sdks/reference/python/rest/addresses/delete

Manage regulatory addresses associated with your SignalWire project. Addresses
are required for phone number compliance in certain regions. This resource
supports list, create, get, and delete -- but not update.

Access via `client.addresses` on a [`RestClient`][restclient] instance.

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

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

addresses = client.addresses.list()
for addr in addresses.get("data", []):
    print(addr["id"], addr.get("friendly_name"))
```

## **Methods**

<CardGroup cols={3}>
  <Card title="list" href="/docs/server-sdks/reference/python/rest/addresses/list">
    List addresses in the project.
  </Card>

  <Card title="create" href="/docs/server-sdks/reference/python/rest/addresses/create">
    Create a new regulatory address.
  </Card>

  <Card title="get" href="/docs/server-sdks/reference/python/rest/addresses/get">
    Retrieve a specific address.
  </Card>

  <Card title="delete" href="/docs/server-sdks/reference/python/rest/addresses/delete">
    Delete an address from the project.
  </Card>
</CardGroup>