***

title: list_participants
slug: /reference/python/rest/compat/conferences/list-participants
description: List participants in a conference.
max-toc-depth: 3
---------------------

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

List participants in a conference.

<EndpointSchemaSnippet endpoint="GET /Accounts/{AccountSid}/Conferences/{ConferenceSid}/Participants" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /Accounts/{AccountSid}/Conferences/{ConferenceSid}/Participants" />

## **Example**

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

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

participants = client.compat.conferences.list_participants("CF...")
```