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

#### Inherited from

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

## meta

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

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

#### Inherited from

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

## **Examples**

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