***

title: get
slug: /reference/typescript/rest/phone-numbers/get
description: Retrieve details for a specific phone number.
max-toc-depth: 3
---------------------

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

Retrieve details for a specific phone number.

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

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/relay/rest/phone_numbers/{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 number = await client.phoneNumbers.get("phone-number-id");
console.log(number.number, number.name);
```