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

# recording$

> Observable indicating whether the call is being recorded.

```ts
get recording$(): Observable<boolean>
```

Observable indicating whether the call is being recorded.

## recording

```ts
get recording(): boolean
```

Whether the call is currently being recorded.

## **Examples**

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