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

# bandwidthConstrained$

> Observable indicating whether the call is bandwidth-constrained.

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

Observable indicating whether the call is bandwidth-constrained.

## **Examples**

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