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

# meta$

> Observable of custom metadata associated with the call.

```ts
get meta$(): Observable<Record<string, unknown>>
```

Observable of custom metadata associated with the call.

## meta

```ts
get meta(): Record<string, unknown>
```

Current custom metadata of the call.

## **Examples**

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