***

title: list
slug: /reference/python/rest/fabric/ai-agents/list
description: List AI agent resources.
max-toc-depth: 3
---------------------

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

List AI agent resources in the project.

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

## **Response Example**

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

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