***

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

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

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

number = client.phone_numbers.get("phone-number-id")
print(number["number"], number.get("name"))
```