Create & schedule WhatsApp campaigns
Shopify integration for real-time alerts
What is ChatterFox?
Chatter Fox is an all-in-one WhatsApp automation platform for APIs, campaigns, team inboxes, and Shopify integration.
WhatsApp Message API for automated messaging
Unified inbox for multiple WhatsApp accounts
Team roles and assignment tools
Why Choose ChatterFox
Automate and Scale
Use REST-style WhatsApp API to send transactional messages, updates, and notifications automatically

Smart Campaigns
Build and schedule message campaigns in advance to engage customers at the right time.

Centralized Inbox
Handle inbound messages from multiple WhatsApp numbers in one place.

Team Collaboration
Assign conversations to team members and streamline support workflows.

Shopify Integration
Connect your store to send order updates, abandoned cart recovery, and support on WhatsApp.

Insights & Usage
Track accounts, messages, campaigns, and usage in one dashboard.

Simple, Transparent Pricing That Scales
Free
$0.00
Monthly / Yearly
- 200 Messages/Month
- Connect up to 1 WhatsApp Accounts
- No Additional Team Members
- Instant Send & Schedule Message
- Text, Image & File Types Supported
- Camapign module to send messages to multiple numbers at once
- Ability to Set Disappearing Messages
Pro
$49.99 / $499.99
Monthly / Yearly
- 20,000 Messages/Month
- Connect up to 2 WhatsApp Accounts
- Work with up to 2 Team Members
- Instant Send & Schedule Message
- Text, Image & File Types Supported
- Camapign module to send messages to multiple numbers at once
- Ability to Set Disappearing Messages
Premium
$99.99 / $999.99
Monthly / Yearly
- 50,000 Messages/Month
- Connect up to 4 WhatsApp Accounts
- Work with up to 5 Team Members
- Instant Send & Schedule Message
- Text, Image & File Types Supported
- Camapign module to send messages to multiple numbers at once
- Ability to Set Disappearing Messages
Want Enterprise Plan?
Connect to our sales team
Frequently Asked Questions
Still have Questions?
Get In Touch
Have questions, need help setting up integrations, or want a custom plan? We're here to help.
WhatsApp API Features for Automating Communication
Everything you need to manage, automate, and scale WhatsApp conversations from one powerful platform.
Everything you need to manage, automate, and scale WhatsApp conversations from one powerful platform.
- Send messages to a single WhatsApp number
- Ideal for transactional & system alerts
- Supports text, media, and documents
- Real-time delivery status
- Secure, REST-based API
// JavaScript Example: Send WhatsApp Message
const accountId = "your_account_id";
const url = `https://api.chatterfox.co/whatsapp/account/${accountId}/send-message`;
async function sendMessage() {
const formData = new FormData();
formData.append("to", "+919876543210"); // recipient with country code
formData.append("message", "Hello from ChatterFox!");
formData.append("scheduledTime", "2026-01-01T10:00:00"); // optional (ISO 8601)
formData.append("timezoneId", "Asia/Kolkata"); // optional
formData.append("expiration", "1"); // optional: 0(remove),1(24h),2(7d),3(90d)
formData.append("file", fileInput.files[0]); // optional
try {
const response = await fetch(url, {
method: "POST",
headers: {
Authorization: "Bearer YOUR_API_TOKEN"
// Do NOT set Content-Type manually for FormData
},
body: formData
});
const data = await response.json();
console.log(data);
} catch (error) {
console.error("Send message error:", error);
}
}
sendMessage();Everything you need to manage, automate, and scale WhatsApp conversations from one powerful platform.
- Send bulk WhatsApp messages
- Schedule campaigns in advance
- Template-based messaging
- Campaign status & delivery tracking
- High-performance message delivery
// JavaScript Example: Create Campaign
const url = "https://api.chatterfox.co/campaign/create";
async function createCampaign(file) {
const formData = new FormData();
formData.append("name", "Festival Campaign");
formData.append("accountId", "your_account_id");
formData.append("scheduledTime", "2026-01-01T10:10:00"); // optional
formData.append("timezoneId", "Asia/Kolkata"); // optional
formData.append("expiration", "2"); // optional: 0(remove),1(24h),2(7d),3(90d)
formData.append("file", file); // required
try {
const response = await fetch(url, {
method: "POST",
headers: {
Authorization: "Bearer YOUR_API_TOKEN"
// Do NOT set Content-Type manually for FormData
},
body: formData
});
const data = await response.json();
console.log(data);
} catch (error) {
console.error("Create campaign error:", error);
}
}
// Example usage:
// const file = document.querySelector("#csvFile").files[0];
// createCampaign(file);Seamless Shopify Integration
Connect your Shopify store to Chatter Fox for automated WhatsApp alerts and customer engagement. Automatically notify customers when they place an order, update shipping status, and send delivery confirmations — directly to WhatsApp.
