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

# embeddableCall

> Creates a call using an embed token for simple, embeddable integrations.

```ts
embeddableCall(options): Promise<Call>
```

Creates a call using an embed token for simple, embeddable integrations.

Handles client creation, authentication, and dialing in a single call.

## **Parameters**

Embed token, host, and destination.

Destination URI to call.

Embed token for authentication.

SignalWire host URL.

## **Returns**

`Promise<Call>`

The created [`Call`](/docs/browser-sdk/v4/reference/interfaces/call) instance.

## **Examples**

### Drop-in call widget

```ts
import { embeddableCall } from '@signalwire/js';

const call = await embeddableCall({
  to: '/public/conference',
  embedToken: 'YOUR_EMBED_TOKEN',
  host: 'your-space.signalwire.com',
});
```