***

title: get_participant
slug: /reference/python/rest/compat/conferences/get-participant
description: Retrieve a specific participant in a conference.
max-toc-depth: 3
---------------------

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

Retrieve a specific participant in a conference.

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

## **Response Example**

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

## **Example**

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

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

participant = client.compat.conferences.get_participant("CF...", "CA...")
```