***

title: SIP Endpoints
slug: /reference/python/rest/fabric/sip-endpoints
description: Manage SIP endpoint resources via the Fabric namespace.
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

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

<Note>
  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.
</Note>

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

<CardGroup cols={3}>
  <Card title="list" href="/docs/server-sdks/reference/python/rest/fabric/sip-endpoints/list">
    List SIP endpoint resources.
  </Card>

  <Card title="create" href="/docs/server-sdks/reference/python/rest/fabric/sip-endpoints/create">
    Create a new SIP endpoint resource.
  </Card>

  <Card title="get" href="/docs/server-sdks/reference/python/rest/fabric/sip-endpoints/get">
    Retrieve a single SIP endpoint resource.
  </Card>

  <Card title="update" href="/docs/server-sdks/reference/python/rest/fabric/sip-endpoints/update">
    Replace a SIP endpoint resource.
  </Card>

  <Card title="delete" href="/docs/server-sdks/reference/python/rest/fabric/sip-endpoints/delete">
    Delete a SIP endpoint resource.
  </Card>

  <Card title="list_addresses" href="/docs/server-sdks/reference/python/rest/fabric/sip-endpoints/list-addresses">
    List addresses for a SIP endpoint resource.
  </Card>
</CardGroup>