***

title: delete
slug: /reference/python/rest/addresses/delete
description: Delete an address from the project.
max-toc-depth: 3
---------------------

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

Delete an address from the project.

<EndpointSchemaSnippet endpoint="DELETE /api/relay/rest/addresses/{id}" />

## **Example**

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

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

client.addresses.delete("address-id")
```