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

# self$

> Observable of the local (self) participant.

```ts
get self$(): Observable<CallSelfParticipant>
```

Observable of the local (self) participant.

## self

```ts
get self(): CallSelfParticipant | null
```

The local participant, or `null` if not yet joined.

## **Examples**

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