> For the complete documentation index, see [llms.txt](https://docs.appetize.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.appetize.io/platform/embedding-apps.md).

# Embedding

Enhance your user experience by embedding  Appetize virtual devices into your own website or product using Appetize's embedding functionality.

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="https://2147444700-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MJUveBCJfn0GR8-hlqi%2Fuploads%2Fro8Wl5iKd0sBn88Dsnam%2FScreenshot%202025-03-21%20113309.png?alt=media&amp;token=baf5e694-9eeb-4cd5-85e1-2561b33a03d6" 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="https://2147444700-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MJUveBCJfn0GR8-hlqi%2Fuploads%2Fgit-blob-39c1dc35c933255bd673d942617c807641e4dd58%2Fimage.png?alt=media" 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 %}
