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

# nodeId$

> Observable of the server node ID handling this call.

```ts
get nodeId$(): Observable<string | null>
```

Observable of the server node ID handling this call.

## nodeId

```ts
get nodeId(): string | null
```

Server node ID handling this call, or `null`.

## **Examples**

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