Simple Integration
Add Kontato Chat to your website with just two lines of code. No complex setup required.
Customer Support AI Chat Widget
Add intelligent customer support to your website in minutes
Add this code to your website before the closing </body>
tag:
<script>
window.kontatoSettings = {
'store-id': "YOUR_STORE_ID" // Replace with your Store ID
};
</script>
<script async src="https://chat.kontato.com/chat-loader.js"></script>
That's it! The chat widget will appear in the bottom-right corner of your website.
Option | Type | Default | Description |
---|---|---|---|
store-id | string | required | Your unique Kontato store identifier |
dark-mode | string | "light" | Theme mode: "light" or "dark" |
chat-closed | string | "true" | Initial state of chat widget |
full-name | string | undefined | Customer's full name |
string | undefined | Customer's email | |
uuid | string | undefined | Unique identifier for the customer |
Option | Type | Default | Description |
---|---|---|---|
brand-name | string | "Kontato" | Company name shown in chat header |
brand-logo | string | undefined | URL to your company logo |
brand-background-color | string | "#0d6efd" | Header background color |
hide-kontato-brand | string | "false" | Hide "Powered by Kontato" footer |
Option | Type | Default | Description |
---|---|---|---|
chat-mode | string | "chat" | Widget mode: "chat" or "playground" |
custom-parameters | string | undefined | Custom data passed to chat |
domain | string | undefined | Website domain |
open | boolean | false | Auto-open chat on load |
closable | boolean | true | Allow closing the chat widget |
<script>
window.kontatoSettings = {
'store-id': "YOUR_STORE_ID",
'full-name': "John Doe",
'dark-mode': "light",
'brand-name': "MyCompany",
'brand-logo': "https://example.com/logo.png",
'hide-kontato-brand': "false"
};
</script>
<script async src="https://chat.kontato.com/chat-loader.js"></script>
<kontato-chat
store-id="YOUR_STORE_ID"
dark-mode="light"
brand-name="MyCompany"
chat-closed="false">
</kontato-chat>
const chat = new KontatoChat({
'store-id': "YOUR_STORE_ID",
'dark-mode': "light",
'brand-name': "MyCompany"
});
Control the chat widget programmatically:
// Initialize chat
const chat = new KontatoChat({
'store-id': "YOUR_STORE_ID"
});
// Open chat
chat.open();
// Close chat
chat.close();
// Toggle chat
chat.toggle();
// Update configuration
chat.updateConfig({
'dark-mode': "dark"
});
// Destroy chat instance
chat.destroy();
Listen to chat events:
window.addEventListener('kontatoReady', (event) => {
console.log('Chat widget is ready');
});
window.addEventListener('kontatoMessage', (event) => {
console.log('New message:', event.detail);
});
window.kontatoSettings = {
'store-id': "YOUR_STORE_ID",
'brand-name': "MyCompany",
'brand-logo': "https://example.com/logo.png",
'brand-background-color': "#FF0000",
'hide-kontato-brand': "true"
};
window.kontatoSettings = {
'store-id': "YOUR_STORE_ID",
'dark-mode': "dark"
};
window.kontatoSettings = {
'store-id': "YOUR_STORE_ID",
'full-name': "John Doe",
'email': "[email protected]",
'uuid': "unique-customer-id"
};
Widget not showing?
Styling conflicts?
Performance issues?
Need help? Contact us: