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

# participants$

> Observable of the participants list, emits on join/leave/update.

```ts
get participants$(): Observable<CallParticipant[]>
```

Observable of the participants list, emits on join/leave/update.

## participants

```ts
get participants(): CallParticipant[]
```

Current snapshot of all participants in the call.

## **Examples**

```ts
call.participants$.subscribe((participants) => {
  console.log('participants:', participants);
});
```