***

title: get
slug: /reference/typescript/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**

```typescript {9-10}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com"
});

const addr = await client.addresses.get("address-id");
console.log(addr["customer_name"], addr.street);
```