# Embedding

Many customers embed the Appetize virtual devices into their own websites and products. You may use an `iFrame` to embed your app into any HTML.

Our embed links support all our [Query Parameters](/platform/query-params-reference.md) to allow you to fully customize your experience.

## Where is my embed link?

The easiest way to find your embed link is by going to your [Apps](https://appetize.io/apps) or [App Builds](/platform/app-management/listing-apps.md#app-builds-page) page and selecting **share** under the app, App Group or build that you want to embed on your website.

<figure><img src="/files/aH0sPUouf1OLtnfG6rEn" alt=""><figcaption><p>Find your embed link by clicking the share button</p></figcaption></figure>

Currently, `Share` will share a specific build of your application. Soon, we will introduce new sharing features that will allow you to share the latest build without changing the URL.

<figure><img src="/files/62yPxlDPe2VTMQ6SEYna" alt="" width="386"><figcaption><p>Example Share dialog</p></figcaption></figure>

{% hint style="info" %}
You can customize and test out all the [Query Parameters](/platform/query-params-reference.md) on your [App Page](/platform/app-management/running-apps.md) before switching out the `app` link with an `embed` link.
{% endhint %}

## Sample Usage

After obtaining the embed link, you can easily embed the content into your website by creating an `iFrame`:

{% code overflow="wrap" %}

```html
<iframe
  src="https://appetize.io/embed/{buildId}"
  width="378px" 
  height="800px" 
  frameborder="0" 
  scrolling="no"></iframe>
```

{% endcode %}


---

# 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.appetize.io/platform/embedding-apps.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.
