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

# meta$

> Observable of custom metadata for this participant.

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

Observable of custom metadata for this participant.

## meta

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

Custom metadata for this participant, or `undefined` if not set.

## **Examples**

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