> 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.

#### Inherited from

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`addressId$`](/docs/browser-sdk/v4/reference/participant#addressid-1)

## addressId

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

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

#### Inherited from

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`addressId`](/docs/browser-sdk/v4/reference/participant#addressid)

## **Examples**

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