Developer Studio

Embed your AI in
any environment

Choose your framework and go live in minutes. BotLinx is designed to play nice with all modern web technologies.

01

Get your Secret

Create an account, then visit Widget Studio to grab your unique secret key.

02

Inject the Snippet

Pick your stack and paste the generated code into your head or layout file.

03

Secure & Deploy

Your widget is now active. All data remains encrypted and isolated to your domain.

Integration Snippets

<script src="https://botlinx.in//widget/widget.js"></script>
<script>
  function initBotLinxWidget() {
    if (typeof window.initBotlinxWidget === "function") {
      window.initBotlinxWidget({ secret: "YOUR_SECRET_KEY" });
    }
  }
  if (document.readyState === "loading") {
    document.addEventListener("DOMContentLoaded", initBotLinxWidget);
  } else {
    initBotLinxWidget();
  }
</script>

Security Tip: Never share your secret key publicly. In production environments, consider using environment variables to store your key securely.