
Join us as we make chatbots truly conversational
Everything you need to integrate KeyAI into your website
Get KeyAI up and running on your website in less than 2 minutes. Simply copy the script code and paste it into your website's HTML.
<script type="text/javascript">
(function(){
d=document;
s=d.createElement("script");
s.src="https://keyai.net/api/chatbots/YOUR_ACCOUNT_ID";
s.async=1;
d.getElementsByTagName("head")[0].appendChild(s);
})();
</script>You can find your unique Account ID in the KeyAI Dashboard under Settings → Script Code.
Add KeyAI to your WordPress site using the Custom HTML widget.

Navigate to your KeyAI Dashboard and copy the script code.

In WordPress, add a Custom HTML block and paste your script code. The chatbot will appear in the bottom right corner.
Integrate KeyAI into your Shopify store using Custom Liquid.

Get your script code from KeyAI Dashboard

Go to Online Store → Themes → Customize

Click Add Section → Custom Liquid under Footer

Insert your script in the Custom Liquid box and Save

Your chatbot is now live on your Shopify store
Add KeyAI to your Next.js application using the Script component.
// app/layout.tsx or pages/_app.tsx
import Script from 'next/script'
export default function Layout({ children }) {
return (
<>
<Script
src="https://keyai.net/api/chatbots/YOUR_ACCOUNT_ID"
strategy="afterInteractive"
/>
{children}
</>
)
}Add KeyAI to your React application using useEffect hook.
// App.js
import { useEffect } from 'react';
function App() {
useEffect(() => {
const script = document.createElement('script');
script.src = 'https://keyai.net/api/chatbots/YOUR_ACCOUNT_ID';
script.async = true;
document.head.appendChild(script);
return () => {
document.head.removeChild(script);
};
}, []);
return (
// Your app content
);
}Add KeyAI to your Webflow site using Custom Code.