Get an AI chatbot running on your website in under 60 seconds.
- A website where you can add a
<script>tag or install an NPM package - An Aparsoft account with a configured chatbot (sign up free)
- Sign up at chatbot.aparsoft.com
- Register your website URL in the dashboard
- Wait 3-5 minutes while the platform scrapes and vectorizes your content
- Copy your API Key from the Integrations tab
npm install @aparsoft/chatbot-reactimport AparsoftChatbot from '@aparsoft/chatbot-react';
export default function App() {
return (
<>
<main>Your page content</main>
<AparsoftChatbot apiKey="YOUR_PUBLIC_API_KEY" />
</>
);
}npm install @aparsoft/chatbot-nextjs'use client';
import AparsoftChatbot from '@aparsoft/chatbot-nextjs';
export default function Page() {
return <AparsoftChatbot apiKey="YOUR_PUBLIC_API_KEY" />;
}For Pages Router, the 'use client' directive is not needed -- just import and use the component in any page.
npm install @aparsoft/chatbot-vue<template>
<AparsoftChatbot api-key="YOUR_PUBLIC_API_KEY" />
</template>
<script>
import AparsoftChatbot from '@aparsoft/chatbot-vue';
export default {
components: { AparsoftChatbot },
};
</script>npm install @aparsoft/chatbot-angularimport { AparsoftChatbotComponent } from '@aparsoft/chatbot-angular';
@Component({
selector: 'app-root',
standalone: true,
imports: [AparsoftChatbotComponent],
template: `
<main>Your page content</main>
<aparsoft-chatbot apiKey="YOUR_PUBLIC_API_KEY"></aparsoft-chatbot>
`,
})
export class AppComponent {}Add this snippet before the closing </body> tag:
<script
src="https://www.aparsoft.com/static/chatbot-widget/widget.loader.js"
data-aparsoft-chatbot="true"
data-api-key="YOUR_PUBLIC_API_KEY"
></script>- Download the plugin .zip
- Upload via Plugins > Add New > Upload Plugin
- Go to Settings > Aparsoft Chatbot and paste your API Key
See the WordPress Guide for detailed instructions.
Open your website in a browser. You should see the chatbot launcher in the bottom-right corner. Click it and ask a question about your website content.
Clone this repo and run the demo:
git clone https://github.com/aparsoft/chatbot-widgets.git
cd chatbot-widgets/examples/vanilla-html
# Open index.html in your browserThe demo uses a public API key so you can see the chatbot in action immediately.
- Configuration options -- customize position, colors, welcome message
- Theming -- match the widget to your brand
- SSR Guide -- Next.js, Nuxt, and Angular Universal caveats
- API Reference -- programmatic control via hooks and events