WhatsEase Documentation
Everything you need to build powerful WhatsApp experiences
Documentation
WhatsApp Cloud API
Build rich customer experiences with the power of WhatsApp's messaging platform.
Introduction
WhatsEase uses the Meta WhatsApp Cloud API to power its messaging capabilities. Our platform provides a simplified interface and powerful tools that make it easy to build advanced WhatsApp experiences without dealing with the complexity of the raw API.
Below you'll find the official WhatsApp Cloud API documentation that WhatsEase is built on. You can explore it directly or use our simplified guides further down this page.
Loading preview...
Quick Start Guide
Get up and running with WhatsEase in under 10 minutes. This guide will walk you through the basics of setting up your WhatsApp Business account, connecting it to WhatsEase, and sending your first message.
Step 1: Create a WhatsApp Business Account
Sign up for a WhatsApp Business account through Meta's Business Manager.
Step 2: Connect to WhatsEase
Log in to your WhatsEase dashboard and connect your WhatsApp Business account.
Step 3: Send Your First Message
Create a template or use our drag-and-drop composer to send your first message.
Installation
WhatsEase offers multiple integration options to fit your development workflow. Choose the one that works best for your project.
NPM Package
Install our official NPM package to get started with WhatsEase in your JavaScript project:
npm install @whatsease/sdk
REST API
If you prefer to use our REST API directly, here's an example of how to authenticate:
const apiKey = 'your_api_key_here';
// Include this header in all API requests
const headers = {
'Content-Type': 'application/json',
'Authorization': `Bearer ${apiKey}`
};
Authentication
All API requests to WhatsEase require authentication using an API key. You can generate an API key from your WhatsEase dashboard under Settings → API Keys.
API Key Authentication
Include your API key in the Authorization header of all requests:
Authorization: Bearer YOUR_API_KEY
Message API
The Message API allows you to send various types of messages to your WhatsApp users, including text messages, media messages, and interactive messages.
Sending Messages
Send text, media, or interactive messages to your WhatsApp users:
// WhatsEase API - Send Message Example
const response = await fetch('https://api.whatsease.com/v1/messages', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
body: JSON.stringify({
to: '919876543210',
type: 'text',
text: { body: 'Hello from WhatsEase!' }
})
});
const data = await response.json();
console.log(data);
Integration Features
Event Registration
Automate event registrations and send reminders directly through WhatsApp.
QR Code Validation
Scan and validate tickets with our QR code integration on WhatsApp.
Lead Collection
Capture and manage leads from multiple channels in one inbox.
Analytics Dashboard
Measure campaign performance with detailed analytics and insights.
Need more help?
Our support team is ready to help with any questions you have about integration or using WhatsEase features.