***

title: getParticipant
slug: /reference/typescript/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**

```typescript {9}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com"
});

const participant = await client.compat.conferences.getParticipant("CF...", "CA...");
```