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

# audioMuted$

> Observable indicating whether the participant's audio is muted.

```ts
get audioMuted$(): Observable<boolean | undefined>
```

Observable indicating whether the participant's audio is muted.

## audioMuted

```ts
get audioMuted(): boolean
```

Whether the participant's audio is muted.

## **Examples**

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