← TutorialsAI Chatbot Service

Embed AI Chatbot on Your Website

Add the chatbot widget to HTML, React, and WordPress sites.

8 min

Embed your AI Chatbot widget on any website after provisioning.

Steps

  1. Go to Dashboard → AI Chatbot Orders and copy your widget ID.
  2. Add the embed script to your website.
  3. Customize colors in your chatbot dashboard settings.

Code examples

// React component
useEffect(() => {
  const script = document.createElement('script');
  script.src = 'https://cdn.quantumserver.cloud/chatbot/widget.js';
  script.dataset.widgetId = 'YOUR_WIDGET_ID';
  document.body.appendChild(script);
}, []);