Everything you need to set up, deploy and grow your AI chatbot.
From zero to a working AI chatbot in under 10 minutes - no coding required.
Click Start Free on the homepage. Enter your email and password - no credit card required. After registration you go straight to the dashboard.
Free plan - forever
1 chatbot, 200 messages/month, 10-page crawl - completely free, forever.
In the dashboard click New chatbot. Fill in three fields:
Go to the Knowledge tab. Three quick options:
URL Crawler
Enter your site URL - AIGoChat automatically indexes all subpages.
PDF / DOCX file
Upload documents - price lists, manuals, terms of service.
Manual Q&A
Add question-answer pairs manually for precise responses.
Go to the Embed tab. Copy one <script> tag and paste it before the closing </body> on your site.
<script src="https://app.aigochat.com/widget.js" data-chatbot-id="YOUR_CHATBOT_ID" defer ></script>
In the chatbot's General settings you'll find:
| Feature | |
|---|---|
| Chatbot name | Displayed in the widget header and dashboard. |
| Welcome message | First message sent automatically when the chat is opened. |
| Teaser bubbles | Text bubbles appearing above the widget button before the visitor opens the chat. |
| Suggested questions | Quick-question buttons shown in the widget (optional). |
| Fallback message | Response when AI doesn't know. E.g. "Write to us at info@company.com". |
| Collect email | Collect the visitor's email before the conversation. |
AIGoChat supports leading AI models. Model selection is available in the Professional and Business plans - all API costs are included in your subscription.
GPT-4o Mini
Fastest and most economical. Ideal for most use cases.
GPT-4o
Advanced reasoning and analysis. Best for complex questions.
Claude 3.5 Sonnet
Excellent for long detailed answers and document analysis.
Claude 3 Haiku
Lightning-fast responses while maintaining high quality.
Model selection available from the Professional plan. Upgrade your plan to unlock all AI models.
In the Appearance tab you can fully customize the chatbot to your brand:
Use System Instructions (Professional & Business) to set tone and rules:
You are a helpful assistant for Acme Inc. Always respond in English. Do not discuss competitors. If you don't know the answer, direct to: help@acme.com
Create multiple AI personas with different names, avatars and personalities. Assign them to chatbots or rotate automatically. Available from Starter plan.
Go to AI Personas in chatbot settings → click Add Persona → set name and upload avatar.
The crawler automatically visits all subpages, collects content and builds the chatbot's knowledge base.
How to start a crawl:
Page limits:
The crawler respects robots.txt and does not collect content behind logins.
Upload documents in popular formats - AIGoChat automatically extracts text and adds it to the knowledge base.
Maximum single file size: 25 MB. Total knowledge base limit depends on plan (1 MB Free, 5 MB Starter, 50 MB Professional, 500 MB Business).
Add specific question–answer pairs for precise handling. Ideal for prices, opening hours, return policies etc.
You can also bulk-import Q&A from a CSV file (columns: question, answer).
In Knowledge → Sources you can:
Works on any HTML page. Paste before </body>:
<!-- AIGoChat Widget --> <script src="https://app.aigochat.com/widget.js" data-chatbot-id="YOUR_CHATBOT_ID" defer ></script>
Your unique data-chatbot-id is found in the Embed tab of chatbot settings.
Two installation options on WordPress:
Option A - theme / functions.php
Add to the functions.php file of the active theme:
add_action( 'wp_footer', function() { ?> <script src="https://app.aigochat.com/widget.js" data-chatbot-id="YOUR_CHATBOT_ID" defer></script> <?php } );
Option B - Insert Headers and Footers plugin
Install the Insert Headers and Footers plugin, paste the <script> tag in "Footer Scripts" and save.
On every platform paste the tag in the section responsible for custom HTML or scripts:
| Platform | Where to add |
|---|---|
| Shopify | Online Store → Themes → Edit code → theme.liquid (before </body>) |
| Wix | Settings → Custom Code → Add Code → Body → End of body |
| Webflow | Project Settings → Custom Code → Footer Code |
| Squarespace | Settings → Advanced → Code Injection → Footer |
| HTML | Directly in .html file before </body> |
In the dashboard go to Conversations. You'll see all active and ended sessions. Each conversation includes:
Any active conversation can be taken over manually to respond directly to the visitor.
Add agents to your account in the Team section. Each agent can see active conversations and take them over.
Visitors can react to chatbot messages with emoji. Agents see reactions in the dashboard to quickly gauge customer satisfaction. Available on all plans.
Visitors can request a voice call directly from the chat widget. The agent receives the call in the dashboard - no phone number required. Available from <strong>Professional</strong> plan.
Enable voice calling in chatbot settings → Features → Voice calling.
Ended conversations go to the Archive. You can search, filter by date or chatbot, and export to CSV (available from Starter plan).
Invite team members to collaborate in managing chatbots and responding to live conversations.
Go to Settings → Team → click Invite member → enter email address. An invitation is sent and valid for 7 days.
AIGoChat has two roles:
Full access - chatbot settings, billing, team, API keys.
Access to live conversations - can monitor, take over and respond. Cannot change settings or billing.
Number of team members depends on plan:
| Feature | Free | Starter | Professional | Business |
|---|---|---|---|---|
| Team | 1 | 3 | 10 | Unlimited |
In the Analytics section you have access to key chatbot metrics:
Conversations
How many sessions were started in a given period.
Messages sent
Total number of messages from visitors and AI.
Satisfaction ratings
Average rating based on user stars.
Unanswered questions
Topics the chatbot couldn't handle - hint for knowledge base updates.
Avg. conversation time
How long a typical session lasts.
Emails collected
Number of email addresses captured by the chatbot.
From Starter plan and above you receive a daily morning email with the previous day's summary: number of conversations, most common questions and ratings. Digest can be disabled in Account Settings.
API access is available from Starter plan. Allows integrating the chatbot with your own systems.
All requests require the Authorization header:
Authorization: Bearer your_api_key
Generate your API key in Settings → API Keys. Each key can be named and revoked at any time.
/api/chatbots List all chatbots/api/chatbots Create a chatbot/api/chatbots/{id} Update chatbot settings/api/chatbots/{id}/conversations Conversation history/api/chatbots/{id}/knowledge Add knowledge source/api/chatbots/{id}/knowledge/{kId} Remove knowledge source/api/chatbots/{id}/analytics Chatbot statistics/api/chat Send chat message (streaming)The AIGoChat widget emits events you can listen to from your code:
// Chat opened window.addEventListener('aigochat:open', () => { ... }); // Message sent window.addEventListener('aigochat:message', (e) => { console.log(e.detail); // { text, sender, timestamp } }); // Visitor provided email window.addEventListener('aigochat:email', (e) => { console.log(e.detail.email); }); // Programmatically open / close widget window.AiraChat.open(); window.AiraChat.close();
Deploy an AI chatbot on your website in under 10 minutes. Automate customer support 24/7, capture more leads, and never miss a customer question - starting free.
✓ Free plan forever · ✓ 7-day trial on paid plans · ✓ Cancel anytime