# Quickstart

> Add the widget with one script tag and start chatting in minutes.

Source: https://docs.useclad.ai/quickstart

---

Paste this snippet just before `</body>`. It boots an **anonymous** session
automatically — visitors can start chatting immediately.

```html
<script>
  window.SupportChatSettings = {
    workspaceId: "{YOUR_WORKSPACE_ID}",
    widgetId: "{YOUR_WIDGET_ID}",
    region: "us",
  };
  (function (w, d) {
    w.SupportChat = w.SupportChat || function () {
      (w.SupportChat.q = w.SupportChat.q || []).push(arguments);
    };
    var s = d.createElement("script");
    s.async = true;
    s.src = "https://clad-server-staging.up.railway.app/widget/v1/widget.js";
    d.head.appendChild(s);
  })(window, document);
</script>
```

> Find your `workspaceId` and `widgetId` in **Settings → Integrations → Web
> Widget**.

That's it — a launcher appears in the corner. To identify logged‑in users and
unlock per‑user history, continue to [Identity verification](#identity-verification-jwt).

<div class="img-ph">
  <span class="img-ph__badge">📷 Screenshot needed</span>
  <p class="img-ph__title">The launcher after install</p>
  <p class="img-ph__desc">A web page with the Support Chat <strong>launcher button</strong> in the bottom corner, right after adding the snippet — to show the immediate result of the Quickstart.</p>
</div>
