***

title: Imported Numbers
slug: /reference/python/rest/imported-numbers
description: Import phone numbers from other providers.
max-toc-depth: 3
---------------------

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

[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**

<CardGroup cols={3}>
  <Card title="create" href="/docs/server-sdks/reference/python/rest/imported-numbers/create">
    Import a phone number from an external provider.
  </Card>
</CardGroup>

## **Example**

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

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