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

# status$

> Observable of the current call status (e.g.

```ts
get status$(): Observable<CallStatus>
```

Observable of the current call status (e.g. `'ringing'`, `'connected'`).

## status

```ts
get status(): CallStatus
```

Current call status.

## **Examples**

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