***

title: list
slug: /reference/python/rest/fabric/freeswitch-connectors/list
description: List FreeSWITCH connector resources.
max-toc-depth: 3
---------------------

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

List FreeSWITCH connector resources in the project.

<EndpointSchemaSnippet endpoint="GET /api/fabric/resources/freeswitch_connectors" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/fabric/resources/freeswitch_connectors" />

## **Example**

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

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

response = client.fabric.freeswitch_connectors.list()
for connector in response.get("data", []):
    print(f"{connector['display_name']}: {connector['id']}")
```