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

# Saved Form Embed Script

> Load a saved signup form with one line of JavaScript.

# Saved Form Embed Script

Load a saved signup form created in the dashboard with one script tag. No API key is required.

The script renders the current saved form settings when the page loads, so edits to the form in Sequenzy apply to deployed JavaScript embeds without copying new HTML.

## Request

<ParamField path="formId" type="string" required>
  The saved form ID. You can find it on the Forms screen in the dashboard.
</ParamField>

```html theme={null}
<script
  async
  src="https://api.sequenzy.com/api/v1/forms/form_abc123/embed.js"
></script>
```

<Note>Existing company-scoped embed script URLs continue to work.</Note>

## Responses

<ResponseExample>
  ```javascript 200 theme={null}
  (function () {
    var currentScript = document.currentScript;
    // Renders the saved form and handles submission.
  })();
  ```

  ```javascript 404 theme={null}
  console.warn("Invalid Sequenzy form configuration.");
  ```
</ResponseExample>
