***

title: get
slug: /reference/python/rest/addresses/get
description: Retrieve a specific address.
max-toc-depth: 3
---------------------

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

Retrieve a specific address.

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

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/relay/rest/addresses/{id}" />

## **Example**

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

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

addr = client.addresses.get("address-id")
print(addr.get("customer_name"), addr.get("street"))
```