***

title: list
slug: /reference/python/rest/phone-numbers/list
description: List phone numbers owned by the project.
max-toc-depth: 3
---------------------

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

List phone numbers owned by the project.

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

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/relay/rest/phone_numbers" />

## **Example**

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

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

result = client.phone_numbers.list(page_size=10)
for number in result.get("data", []):
    print(number["number"], number.get("name"))
```