***

title: list
slug: /reference/python/rest/fabric/call-flows/list
description: List call flow resources.
max-toc-depth: 3
---------------------

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

List call flow resources in the project.

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

## **Response Example**

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

## **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.call_flows.list()
for flow in response.get("data", []):
    print(f"{flow['display_name']}: {flow['id']}")
```