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

# coverUrl$

> Observable of the cover image URL.

```ts
get coverUrl$(): Observable<string | undefined>
```

Observable of the cover image URL.

## coverUrl

```ts
get coverUrl(): string | undefined
```

Cover image URL.

## **Examples**

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