v77

latestOpenAPI 3.1.0MITraw.githubusercontent.com2026-08-012528701.8 MB
SIP Addresses

List SIP addresses

Returns a paginated list of SIP addresses in the authenticated project.

Permissions

The 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.

get/api/fabric/sip_addresses

Query parameters

page_sizeinteger

The number of results per page.

page_numberinteger

The page index, used together with page_token.

page_tokenstring

Opaque cursor token from a previous response's links.next or links.prev. Begins with PA or PB.

Response

The request has succeeded.

items_countinteger required

The number of SIP addresses in this page of results.

Example response

{
  "links": {
    "self": "https://example.signalwire.com/api/fabric/sip_addresses?page_number=0&page_size=50",
    "first": "https://example.signalwire.com/api/fabric/sip_addresses?page_number=0&page_size=50",
    "next": "https://example.signalwire.com/api/fabric/sip_addresses?page_number=1&page_size=50&page_token=PAbff61159-faab-48b3-959a-3021a8f5beca",
    "prev": "https://example.signalwire.com/api/fabric/sip_addresses?page_number=0&page_size=50&page_token=PAbff61159-faab-48b3-959a-3021a8f5beca"
  },
  "items_count": 1,
  "data": [
    {
      "type": "sip_address",
      "name": "support-line",
      "display_name": "support-line",
      "context": "public",
      "uri": "sip:my-space-support-line@sip.signalwire.com",
      "user": "*",
      "codecs": [
        "PCMU",
        "PCMA"
      ],
      "ciphers": [
        "AEAD_AES_256_GCM_8",
        "AES_256_CM_HMAC_SHA1_80",
        "AES_CM_128_HMAC_SHA1_80",
        "AES_256_CM_HMAC_SHA1_32",
        "AES_CM_128_HMAC_SHA1_32"
      ],
      "ip_auth": [],
      "created_at": "2024-05-06T12:20:00Z",
      "updated_at": "2024-05-06T12:20:00Z"
    }
  ]
}