🚀 Getting Started
Add a live chat bubble to any website in under 60 seconds — no plugins needed.
Create Your Account
Sign up free — no credit card required. Your 7-day trial starts immediately.
Sign Up Free →Create a Chat Bubble
Go to Chat Bubbles and create your first bubble. Set colors, position, and tooltip text to match your brand.
Copy the Embed Code
Each bubble gets a unique script tag. Copy it from the bubble settings page.
Paste Before </body>
Add the snippet to any page — WordPress footer, raw HTML, WHMCS, Shopify. Done!
Embed Code Example
(function() {
var script = document.createElement('script');
script.src = 'https://multichat.website/app/widget.js?v=2.1';
script.setAttribute('data-bubble-key', 'YOUR_BUBBLE_KEY');
document.head.appendChild(script);
})();
</script>
💡 Your YOUR_BUBBLE_KEY is displayed in your dashboard under Chat Bubbles → Embed Code.
🛒 WHMCS Addon Module
FREE Download - Integrate MultiChat seamlessly with your WHMCS installation
📦 Download WHMCS Module
Version 1.0.0 - Compatible with WHMCS 8.0+
Download ModuleFree forever - No license required
✨ Features
- Automatic customer authentication - Customers are auto-logged into chat from WHMCS
- Client data synchronization - View services, domains, invoices, and tickets
- Direct WHMCS admin links - Quick access to client profiles
- Real-time data sync - Instant updates when customers start chatting
- Easy installation - Upload and configure in minutes
- No API keys required - Uses secure push method
- Download the module ZIP file above
- Extract the contents to your WHMCS installation:
/modules/addons/multichat/
- Login to WHMCS Admin Area
- Go to Setup → Addon Modules
- Find "MultiChat Integration" and click Activate
- Click Configure and enter your MultiChat API key (found in your MultiChat settings)
- Click Save Changes
🔧 Configuration
After installation, you'll need to configure these settings:
- MultiChat API Key: Get this from your MultiChat account settings
- MultiChat URL: Your MultiChat installation URL (default: https://multichat.website)
- Chat Bubble Key: The bubble key you want to display on WHMCS pages
💡 How It Works
Once installed, the module automatically:
- Adds the MultiChat widget to your WHMCS client area pages
- Auto-identifies logged-in customers by email
- Sends customer data to MultiChat when they start a conversation
- Allows your support team to see customer services, domains, and tickets directly in the chat dashboard
<script>
(function() {
var script = document.createElement('script');
script.src = 'https://multichat.website/app/widget.js?v=2.0';
script.setAttribute('data-bubble-key', 'YOUR_BUBBLE_KEY');
script.setAttribute('data-prefill-email', 'customer@example.com');
script.setAttribute('data-prefill-name', 'John Doe');
script.setAttribute('data-whmcs-client-id', '12345');
script.setAttribute('data-auto-identify', 'true');
document.head.appendChild(script);
})();
</script>
🔌 API & Webhooks
Premium accounts have full REST API access for custom integrations.
Base URL
Authentication
Pass your API key as a query parameter or Authorization header:
// OR via header
Authorization: Bearer YOUR_API_KEY
Key Endpoints
| Action | Method | Description |
|---|---|---|
conversations | GET | List all conversations |
messages | GET | Get messages for a conversation |
send_message | POST | Send a message to a visitor |
visitors | GET | Get live visitor data |
bubbles | GET | List your chat bubbles |
Send Message Example
{ "action": "send_message", "api_key": "YOUR_API_KEY", "conversation_id": 123, "message": "Hello! How can I help you today?" }
WHMCS API Endpoint
// Sync client data from your WHMCS install
{ "api_key": "YOUR_API_KEY", "client_id": 12345, "email": "client@example.com", "name": "John Doe" }
📖 Feature Documentation
Chat Bubbles
Create unlimited chat bubbles (Premium) or up to 2 (Free plan). Each bubble can be customized independently with:
- Custom colors and branding
- Position (bottom-right, bottom-left, top-right, top-left)
- Size (small, medium, large)
- Welcome message and offline message
- Tooltip configuration
- Window dimensions
Customer Authentication
Multiple ways to authenticate customers:
- Manual Login: Customers enter name and email
- Google OAuth: One-click sign-in with Google account
- Auto-Identify: Pre-fill customer data from your website/WHMCS
Visitor Analytics
Track comprehensive visitor data including:
- Geographic location (Country, Region, City) with GeoIP
- Browser and operating system
- Device type (Desktop, Mobile, Tablet)
- Visit timestamps and referrer information
- Visual charts and data tables
API Access
Premium users get full API access for custom integrations. Available endpoints:
/app/whmcs_api.php- Customer sync and WHMCS integration/app/api.php- Widget API for conversations and messages
❓ Frequently Asked Questions
How many chat bubbles can I create?
All paid plans include unlimited chat bubbles — one unique bubble per website. Each bubble has its own styling, colours, tooltip text, and embed code. You can also run the same bubble across multiple pages of the same site.
What are the pricing plans?
All plans start with a 7-day free trial (no credit card required):
• Monthly — $14.95/month
• Quarterly — $25/3 months ($8.33/mo, save 44%)
• Yearly — $59/year ($4.92/mo, save 67%)
All plans include the same full feature set. View pricing →
Can I use the same chat bubble on multiple websites?
Yes! Simply copy the same embed code to as many websites as you want. All conversations will appear in your dashboard.
Does it work with WordPress/Shopify/Other platforms?
Yes! MultiChat works with any website that allows you to add custom HTML/JavaScript. Simply paste the embed code into your site's footer or use a code injection plugin.
Is the WHMCS module really free?
Yes! The WHMCS addon module is completely free with no license required. Download and use it on as many WHMCS installations as you need.
How does auto-identify work?
Use the data attributes in the widget code to pre-fill customer information. Perfect for logged-in areas of your website or WHMCS integration. Customers won't need to enter their details again.
Can I remove the MultiChat branding?
Yes, with the Premium plan you can remove all MultiChat branding from your chat bubbles.
How do I upgrade to Premium?
Log in and visit Account → Upgrade. Choose Monthly ($14.95), Quarterly ($25), or Yearly ($59) and pay securely with cryptocurrency via Coinbase Commerce. Your account activates instantly after payment confirmation.
What cryptocurrencies do you accept?
We accept Bitcoin (BTC), Ethereum (ETH), Litecoin (LTC), Dogecoin (DOGE), and USDC via Coinbase Commerce. Payments are confirmed near-instantly and activate your account automatically.
Can I use MultiChat as a Desktop App?
Yes! You can install MultiChat as a desktop application using Google Chrome's "Install as App" feature. This gives you a dedicated app window without browser tabs or address bar. To install: visit your dashboard, click the install icon in Chrome's address bar, and click "Install". View full installation guide →
🎨 Widget Customization Options
Data Attributes
Customize the widget behavior using these data attributes:
data-bubble-key="YOUR_KEY" - Required: Your unique bubble identifier
Auto-Identify Customer:
data-prefill-email="user@example.com" - Pre-fill customer email
data-prefill-name="John Doe" - Pre-fill customer name
data-whmcs-client-id="12345" - WHMCS client ID (optional)
data-auto-identify="true" - Skip the form and auto-login
Alternative Attribute Names (for compatibility):
data-customer-email - Alternative to data-prefill-email
data-auto-login="true" - Alternative to data-auto-identify
data-skip-form="true" - Alternative to data-auto-identify
Example: WHMCS Integration
(function() {
var script = document.createElement('script');
script.src = 'https://multichat.website/app/widget.js?v=2.1';
script.setAttribute('data-bubble-key', 'your_bubble_key_here');
script.setAttribute('data-prefill-email', '{$client.email}');
script.setAttribute('data-prefill-name', '{$client.fullname}');
script.setAttribute('data-whmcs-client-id', '{$client.id}');
script.setAttribute('data-auto-identify', 'true');
document.head.appendChild(script);
})();
</script>
💬 Need Help?
Reach us through any channel — we'll get back to you fast.
Email Support
General & billing inquiries
support@multichat.websiteResponse: < 24hr (Free) · < 2hr (Premium)
Self-Service Docs
Search this page or browse sections above — most answers are here.
Search docs ↑