# Embedding a Toucan App Using iFrames

Although embedding is not a built-in feature for apps, you can integrate a Toucan app within your application using an iFrame. Here’s how:

{% hint style="warning" %}
The Embed SDK is not compatible with iFrames, so SDK functionality will not be available in an embedded Toucan app.
{% endhint %}

## 1. Get Your App URL

Locate the URL of your app in the browser’s address bar. It should look something like this:

<figure><img src="/files/0mFPeUqJARvicDAuMdsT" alt=""><figcaption></figcaption></figure>

```html
https://solution.toucantoco.com/breezy-v3
```

## 2. Create the iFrame

With your app’s URL, you can create an iFrame by using it as the `src` attribute:

{% code overflow="wrap" %}

```html
<iframe src="https://solution.toucantoco.com/breezy-v3" width="100%" height="100%"></iframe>
```

{% endcode %}

## 3. Authenticate the iFrame

To allow user-specific access, you’ll need to pass an authentication token. Follow the steps in the [authentication documentation](/visualizations-and-layouts/embedding/authentication.md) to obtain your token. Then, append the token to the URL using the `embed_token` parameter:

{% code overflow="wrap" %}

```html
<iframe src="https://solution.toucantoco.com/breezy-v3?embed_token=OPAQUE_TOKEN" width="100%" height="100%"></iframe>
```

{% endcode %}

#### Congratulations! 🎉

You’ve successfully embedded a Toucan app within your application!


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs-v3.toucantoco.com/visualizations-and-layouts/embedding/integration/embed-an-app.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
