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

# SIP Endpoints

> Manage SIP endpoint resources via the Fabric namespace.

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

[client-fabric-subscribers-list-sip-endpoints]: /docs/server-sdks/reference/python/rest/fabric/subscribers/list-sip-endpoints

[list]: /docs/server-sdks/reference/python/rest/fabric/sip-endpoints/list

[create]: /docs/server-sdks/reference/python/rest/fabric/sip-endpoints/create

[get]: /docs/server-sdks/reference/python/rest/fabric/sip-endpoints/get

[update]: /docs/server-sdks/reference/python/rest/fabric/sip-endpoints/update

[delete]: /docs/server-sdks/reference/python/rest/fabric/sip-endpoints/delete

[listaddresses]: /docs/server-sdks/reference/python/rest/fabric/sip-endpoints/list-addresses

Manage SIP endpoint resources. Standard CRUD with PUT updates and address listing.

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

This is the top-level SIP endpoint resource. For managing SIP endpoints belonging to a
specific [subscriber](/docs/platform/subscribers), use [`client.fabric.subscribers.list_sip_endpoints()`][client-fabric-subscribers-list-sip-endpoints]
and related methods instead.

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

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

items = client.fabric.sip_endpoints.list()
```

## **Methods**

#### [list](/docs/server-sdks/reference/python/rest/fabric/sip-endpoints/list)

List SIP endpoint resources.

#### [create](/docs/server-sdks/reference/python/rest/fabric/sip-endpoints/create)

Create a new SIP endpoint resource.

#### [get](/docs/server-sdks/reference/python/rest/fabric/sip-endpoints/get)

Retrieve a single SIP endpoint resource.

#### [update](/docs/server-sdks/reference/python/rest/fabric/sip-endpoints/update)

Replace a SIP endpoint resource.

#### [delete](/docs/server-sdks/reference/python/rest/fabric/sip-endpoints/delete)

Delete a SIP endpoint resource.

#### [list\_addresses](/docs/server-sdks/reference/python/rest/fabric/sip-endpoints/list-addresses)

List addresses for a SIP endpoint resource.