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
- Go to Dashboard → AI Chatbot Orders and copy your widget ID.
- Add the embed script to your website.
- 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);
}, []);