> Fetch clean Markdown by appending `.md` to any page URL under https://signalwire.com/docs or requesting it with the HTTP header `Accept: text/markdown`. The root index at https://signalwire.com/docs/llms.txt lists the available documentation indexes.

# List phone number addresses

GET https://%7BYour_Space_Name%7D.signalwire.com/api/fabric/phone_number_addresses

Lists the phone number addresses in your SignalWire project, newest first. Each address represents one channel (`calling` or `messaging`) of a phone number you own, together with the resource that handles it, if any. Addresses whose number has been released are not included. Use it to find the address ID for a number's channel before you link, re-point, or remove its resource.Only the pagination parameters are supported; there are no filters. A `page_token` that is malformed or no longer resolves returns a `422` with the code `page_token_is_invalid`.This API is in beta and may change.#### PermissionsThe API token used to authenticate must have the following scope(s) enabled to make a successful request: *Calling*, *Fax*, *Messaging*, or *Video*.[Learn more about API scopes](/docs/platform/your-signalwire-api-space).

Reference: https://signalwire.com/docs/apis/rest/phone-number-addresses/list-phone-number-addresses

## Authentication

- `Authorization` header (basic auth, required) — SignalWire Basic Authentication using Project ID and API Token. The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password. Example: ``` Authorization: Basic base64(project_id:token) ```

## Request

### Query parameters

- `page_size` (integer, optional, default: 50) — The number of results per page.
- `page_number` (integer, optional, default: 0) — The page index, used together with `page_token`.
- `page_token` (string, optional) — Opaque cursor token from a previous response's `links.next` or `links.prev`. Begins with `PA` or `PB`.

## Response

### 200

The request has succeeded.

- `links` (object, required) — Pagination links for the response.
  - `self` (string, required) — Link to the current page of results.
  - `first` (string, required) — Link to the first page of results.
  - `next` (string, optional) — Link to the next page of results.
  - `prev` (string, optional) — Link to the previous page of results.
- `items_count` (integer, required) — The number of phone number addresses in this page of results.
- `data` (list of object, required) — An array of phone number address objects.
  - `id` (string, required) — Unique identifier for the phone number address.
  - `type` (enum, required) — The object type. Always `phone`.
    - Allowed values: `phone`
  - `handler_type` (enum, required) — The channel this address represents: `calling` for inbound calls or `messaging` for inbound messages. A phone number has one address per channel.
    - Allowed values: `calling`, `messaging`
  - `resource_id` (string, required, nullable) — ID of the resource that handles this channel. `null` when no resource is assigned.
  - `name` (string, required) — Name of the phone number address.
  - `phone_number` (string, required) — The phone number in E.164 format.
  - `phone_number_id` (string, required) — ID of the phone number this address belongs to.
  - `created_at` (datetime, required) — Date and time when the phone number address was created.
  - `updated_at` (datetime, required) — Date and time when the phone number address was last updated.

## Errors

### 401 Unauthorized Error

Access is unauthorized.

- `error` (enum, required)
  - Allowed values: `Unauthorized`

### 422 Unprocessable Entity Error

The request contains invalid parameters. See errors for details.

- `errors` (list of object, required) — List of validation errors.
  - `type` (string, required) — The category of error.
  - `code` (string, required) — A specific error code.
  - `message` (string, required) — A description of what caused the error.
  - `url` (string, required) — A link to documentation about this error.
  - `attribute` (string, optional, nullable) — The request parameter that caused the error, if applicable.

### 500 Internal Server Error

An internal server error occurred.

- `error` (enum, required)
  - Allowed values: `Internal Server Error`

## Examples

**Response**

```json
{
  "links": {
    "self": "https://example.signalwire.com/api/fabric/phone_number_addresses?page_number=0&page_size=50",
    "first": "https://example.signalwire.com/api/fabric/phone_number_addresses?page_number=0&page_size=50",
    "next": "https://example.signalwire.com/api/fabric/phone_number_addresses?page_number=1&page_size=50&page_token=PAbff61159-faab-48b3-959a-3021a8f5beca",
    "prev": "https://example.signalwire.com/api/fabric/phone_number_addresses?page_number=0&page_size=50&page_token=PAbff61159-faab-48b3-959a-3021a8f5beca"
  },
  "items_count": 1,
  "data": [
    {
      "id": "b3f1c0a2-0f6e-4a9d-9b2a-1c2d3e4f5a6b",
      "type": "phone",
      "handler_type": "calling",
      "resource_id": "8a7b6c5d-4e3f-2a1b-0c9d-8e7f6a5b4c3d",
      "name": "main-support-number",
      "phone_number": "+13105550100",
      "phone_number_id": "1f2e3d4c-5b6a-7980-a1b2-c3d4e5f60718",
      "created_at": "2024-05-06T12:20:00Z",
      "updated_at": "2024-05-06T12:20:00Z"
    }
  ]
}
```

**SDK Code**

```python
import requests

url = "https://{your_space_name}.signalwire.com/api/fabric/phone_number_addresses"

response = requests.get(url, auth=("<project_id>", "<api_token>"))

print(response.json())
```

```javascript
const url = 'https://{your_space_name}.signalwire.com/api/fabric/phone_number_addresses';
const credentials = btoa("<project_id>:<api_token>");

const options = {method: 'GET', headers: {Authorization: `Basic ${credentials}`}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://{your_space_name}.signalwire.com/api/fabric/phone_number_addresses"

	req, _ := http.NewRequest("GET", url, nil)

	req.SetBasicAuth("<project_id>", "<api_token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://{your_space_name}.signalwire.com/api/fabric/phone_number_addresses")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request.basic_auth("<project_id>", "<api_token>")

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://{your_space_name}.signalwire.com/api/fabric/phone_number_addresses")
  .basicAuth("<project_id>", "<api_token>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://{your_space_name}.signalwire.com/api/fabric/phone_number_addresses', [
  'headers' => [
  ],
    'auth' => ['<project_id>', '<api_token>'],
]);

echo $response->getBody();
```

```csharp
using RestSharp;
using RestSharp.Authenticators;

var client = new RestClient("https://{your_space_name}.signalwire.com/api/fabric/phone_number_addresses");
client.Authenticator = new HttpBasicAuthenticator("<project_id>", "<api_token>");
var request = new RestRequest(Method.GET);

IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let credentials = Data("<project_id>:<api_token>".utf8).base64EncodedString()

let headers = ["Authorization": "Basic \(credentials)"]

let request = NSMutableURLRequest(url: NSURL(string: "https://{your_space_name}.signalwire.com/api/fabric/phone_number_addresses")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```