> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dzap.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Widget Integration

> Embed DZap swap UI in your app.

<Snippet file="coming-soon.mdx" />

## What's coming

The DZap embeddable widget will let you drop a full swap/bridge UI into any web app:

* React + plain JS bundles
* Themeable to match your brand
* Pre-fillable from URL params (chain, tokens, amount)
* Wallet adapter passthrough
* Compatible with [Partner Fees](/cookbook/partner-fees) for monetization

## In the meantime

If you want to give users a swap experience today without building UI from scratch, two paths:

### 1. Deep links to the DZap app

Generate pre-filled links to `app.dzap.io`:

```ts theme={null}
const url = await sdk.getTool('SwapLinkGeneratorTool').execute({
  fromChain: 42161,
  srcToken: '0xaf88...',
  destToken: '0x82aF...',
  amount: '100000000',
});
window.open(url, '_blank');
```

### 2. Roll your own with the SDK

`@dzapio/sdk` covers everything the widget will eventually wrap. See [First Swap](/cookbook/first-swap) for the basic shape.

## Track release

[Changelog](/resources/changelog) · `@dzap_io` on X · [Discord](https://discord.com/invite/aRHESJB9md).
