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

# Imported Numbers

> Import phone numbers from other providers.

[restclient]: /docs/server-sdks/reference/python/rest/client

Import externally-hosted phone numbers into your SignalWire project. This allows
you to route calls through SignalWire for numbers hosted by another carrier. Only
the create operation is supported.

Access via `client.imported_numbers` on a [`RestClient`][restclient] instance.

## **Methods**

Import a phone number from an external provider.

## **Example**

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

client = RestClient()
result = client.imported_numbers.create(number="+15551234567")
```