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

# Iframe Embed

> Embed AI agents using iframe for flexible website integration

Integrate into any web builder or site that supports custom HTML or iframes.

## Basic Usage

```html theme={"dark"}
<iframe 
  src="https://talk.iwy.ai/embed?token=xxx&agentid=your-agent-id"
  style="width: 100%; height: 100%; border: none;"
  allow="microphone;"
  sandbox="allow-scripts allow-same-origin allow-popups allow-popups-to-escape-sandbox">
</iframe>
```

## Parameters

* `token` - Your authentication token
* `agentid` - Your agent ID
* `width` - iframe width (set using CSS, example: `width: 100%;`)
* `height` - iframe height (set using CSS, example: `height: 600px;`)
* `allow="microphone;"` - **Important**: Required for voice features

<Note type="warning">
  Without this permission (`allow="microphone;"`), users won't be able to interact with the agent via voice.
</Note>

Perfect for embedding in specific page sections where you want full control over layout and positioning.

Common use cases include:

* **Web Builders:** Embedding into a [Framer](https://www.framer.com/) or [Webflow](https://webflow.com/) site.
* **E-commerce Platforms:** Adding to a [Shopify](https://www.shopify.com/) or [BigCommerce](https://www.bigcommerce.com/) store.
* **Blogs & Websites:** Including in a personal blog, company website, or any site built with a CMS like [WordPress](https://wordpress.org/).

[Get your token](https://app.iwy.ai) | [Contact support](https://www.iwy.ai/contact)
