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

# addressId$

> Observable of the participant's address ID.

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

Observable of the participant's address ID.

## addressId

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

Address ID of this participant, or `undefined` if not available.

## **Examples**

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