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

# Use Suki SDK Inside an Iframe

> Learn how to use the Suki Web SDK inside an iframe.

Embed the Suki Web SDK in your web application by using an iframe. For the SDK to function correctly, grant the iframe specific permissions to access the microphone and clipboard.

### Granting required permissions

* **Microphone access** is required for ambient note capture and dictation.

* **Clipboard access** is required for the copy-to-clipboard functionality in note sections.

To enable these features, add the `allow` attribute to your `<iframe>` element with the necessary permission values.

<Note>
  Modern browsers restrict access to sensitive APIs like the microphone from within an iframe for security reasons. If you do not explicitly grant permission, core SDK features will fail.
</Note>

<CodeGroup>
  ```html HTML theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
  <iframe
    src="https://your-app-url.com"
    allow="microphone; clipboard-write; clipboard-read"
  >
    <!-- Your application with the Suki SDK is rendered here -->
  </iframe>
  ```
</CodeGroup>

## Next steps

<Icon icon="file-lines" iconType="solid" /> Read the [Advanced configuration](/web-sdk/examples/advanced-configuration) example to learn how to configure the Suki SDK.
