***

title: get
slug: /reference/python/rest/compat/phone-numbers/get
description: Retrieve a single phone number by SID.
max-toc-depth: 3
---------------------

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

Retrieve a single phone number by SID.

<EndpointSchemaSnippet endpoint="GET /Accounts/{AccountSid}/IncomingPhoneNumbers/{Sid}" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /Accounts/{AccountSid}/IncomingPhoneNumbers/{Sid}" />

## **Example**

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

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

number = client.compat.phone_numbers.get("PN...")
```