Meta Cloud API - A powerful TypeScript wrapper for Meta's Cloud API, providing a clean and type-safe interface for WhatsApp Business Platform integration.
- Type-Safe Development - Built with TypeScript to provide code completion and catch errors during development
- Comprehensive Coverage - Full support for WhatsApp Business Platform APIs including Messages, Media, Templates, Flows, and more
- Modular Architecture - Clean separation of concerns with dedicated API classes for each domain
- Framework-Specific Webhooks - Built-in support for Express.js and Next.js webhook handling
- Advanced Features - Support for Flows, Encryption, QR Codes, Two-Step Verification, and WABA management
- Error Handling - Standardized error handling with detailed Meta API error information
npm install meta-cloud-api
# or
yarn add meta-cloud-api
# or
pnpm add meta-cloud-apiimport WhatsApp, { MessageTypesEnum } from 'meta-cloud-api';
// Initialize the client
const client = new WhatsApp({
accessToken: process.env.CLOUD_API_ACCESS_TOKEN,
phoneNumberId: Number(process.env.WA_PHONE_NUMBER_ID),
businessAcctId: process.env.WA_BUSINESS_ACCOUNT_ID
});
// Send a WhatsApp text message
const response = await client.messages.text({
to: '+1234567890',
body: 'Hello from Meta Cloud API!'
});
console.log(`Message ID: ${response.messages[0].id}`);const result = await client.messages.text({
to: "15551234567",
body: "Hello from Meta Cloud API!"
});import { ComponentTypesEnum, LanguagesEnum, ParametersTypesEnum } from 'meta-cloud-api';
const result = await client.messages.template({
to: "15551234567",
body: {
name: "shipping_confirmation",
language: {
code: LanguagesEnum.English_US,
policy: "deterministic"
},
components: [
{
type: ComponentTypesEnum.Body,
parameters: [
{
type: ParametersTypesEnum.Text,
text: "John Doe"
},
{
type: ParametersTypesEnum.Text,
text: "12345"
}
]
}
]
}
});const result = await client.messages.image({
to: "15551234567",
body: {
link: "https://example.com/image.jpg"
}
});import { InteractiveTypesEnum } from 'meta-cloud-api';
const result = await client.messages.interactive({
to: "15551234567",
body: {
type: InteractiveTypesEnum.Button,
body: {
text: "What would you like to do?"
},
action: {
buttons: [
{
type: "reply",
reply: {
id: "help_button",
title: "Get Help"
}
},
{
type: "reply",
reply: {
id: "info_button",
title: "Account Info"
}
}
]
}
}
});import express from 'express';
import { MessageTypesEnum } from 'meta-cloud-api';
import { webhookHandler } from 'meta-cloud-api/webhook/express';
const app = express();
// Create webhook handler
const bot = webhookHandler({
accessToken: process.env.CLOUD_API_ACCESS_TOKEN!,
phoneNumberId: parseInt(process.env.WA_PHONE_NUMBER_ID!),
webhookVerificationToken: process.env.WEBHOOK_VERIFICATION_TOKEN!,
});
// Handle text messages
bot.processor.onMessage(MessageTypesEnum.Text, async (whatsapp, message) => {
await whatsapp.messages.text({
to: message.from,
body: `Echo: ${message.text?.body}`,
});
});
// Setup webhook endpoints
app.get('/webhook', bot.webhook);
app.post('/webhook', express.json(), bot.webhook);
app.listen(3000);// pages/api/webhook.ts
import { NextApiRequest, NextApiResponse } from 'next';
import { MessageTypesEnum } from 'meta-cloud-api';
import { webhookHandler } from 'meta-cloud-api/webhook/nextjs';
const bot = webhookHandler({
accessToken: process.env.CLOUD_API_ACCESS_TOKEN!,
phoneNumberId: parseInt(process.env.WA_PHONE_NUMBER_ID!),
webhookVerificationToken: process.env.WEBHOOK_VERIFICATION_TOKEN!,
});
// Handle text messages
bot.processor.onMessage(MessageTypesEnum.Text, async (whatsapp, message) => {
await whatsapp.messages.text({
to: message.from,
body: `Echo: ${message.text?.body}`,
});
});
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
return bot.webhook(req, res);
}import { MessageTypesEnum } from 'meta-cloud-api';
// Pre-process all messages (e.g., mark as read)
// ✨ Use processed.messageId for consistent ID access across all message types
bot.processor.onMessagePreProcess(async (whatsapp, processed) => {
// messageId is automatically extracted from the correct location
// (message.id for most types, message.context.id for nfm_reply)
await whatsapp.messages.markAsRead({ messageId: processed.messageId });
});
// ✨ Type-safe specialized handlers (recommended)
// These methods provide better type safety - no need for optional chaining!
bot.processor.onText(async (whatsapp, processed) => {
const { message, messageId } = processed;
// message.text is guaranteed to exist - no need for message.text?.body
console.log('Received:', message.text.body);
await whatsapp.messages.text({
to: message.from,
text: { body: `Echo: ${message.text.body}` }
});
// Mark as read using the extracted messageId
await whatsapp.messages.markAsRead({ messageId });
});
bot.processor.onImage(async (whatsapp, processed) => {
const { message } = processed;
// message.image is guaranteed to exist
console.log('Image ID:', message.image.id);
console.log('Caption:', message.image.caption);
});
bot.processor.onInteractive(async (whatsapp, processed) => {
const { message, messageId } = processed;
// message.interactive is guaranteed to exist
if (message.interactive.type === 'nfm_reply') {
const flowResponse = JSON.parse(message.interactive.nfm_reply.response_json);
console.log('Flow response:', flowResponse);
// messageId works correctly for nfm_reply (uses context.id automatically)
await whatsapp.messages.markAsRead({ messageId });
} else if (message.interactive.type === 'button_reply') {
console.log('Button clicked:', message.interactive.button_reply.id);
} else if (message.interactive.type === 'list_reply') {
console.log('List item selected:', message.interactive.list_reply.id);
}
});
// Other specialized handlers available:
// onVideo, onAudio, onDocument, onSticker, onButton,
// onLocation, onContacts, onReaction, onOrder, onSystem
// 📝 Legacy generic handler (still supported)
bot.processor.onMessage(MessageTypesEnum.Text, async (whatsapp, processed) => {
// With generic handler, you need optional chaining
console.log(processed.message.text?.body); // ⚠️ Need ? because text might be undefined
// But messageId is always available regardless of message type!
await whatsapp.messages.markAsRead({ messageId: processed.messageId });
});
// 🔍 TypeScript Discriminated Union for Manual Type Narrowing
// Use this when you need to check message types dynamically in pre/post-process handlers
bot.processor.onMessagePreProcess(async (whatsapp, processed) => {
const { message, messageId } = processed;
// TypeScript automatically narrows the type based on the type property!
if (message.type === MessageTypesEnum.Text) {
console.log(message.text.body); // âś… No optional chaining needed!
} else if (message.type === MessageTypesEnum.Image) {
console.log(message.image.id); // âś… Type-safe!
} else if (message.type === MessageTypesEnum.Interactive) {
console.log(message.interactive.type); // âś… Guaranteed to exist!
}
// messageId works for all types - automatically extracted from the correct location
await whatsapp.messages.markAsRead({ messageId });
});
// Handle message status updates
bot.processor.onMessageStatus(async (whatsapp, status) => {
console.log(`Message ${status.id} status: ${status.status}`);
});// List all templates
const templates = await client.templates.list({
businessId: process.env.WA_BUSINESS_ACCOUNT_ID
});
// Create a new template
const newTemplate = await client.templates.create({
businessId: process.env.WA_BUSINESS_ACCOUNT_ID,
name: "welcome_message",
category: "MARKETING",
components: [
{
type: "HEADER",
format: "TEXT",
text: "Welcome!"
},
{
type: "BODY",
text: "Hi {{1}}, welcome to our service!"
}
],
language: "en_US"
});import fs from 'fs';
// Upload media
const mediaUpload = await client.media.upload({
file: fs.createReadStream("./path/to/image.jpg"),
type: "image/jpeg"
});
// Get media URL
const media = await client.media.get({
mediaId: mediaUpload.id
});
// Download media
const mediaBuffer = await client.media.download({
mediaId: mediaUpload.id
});// Update business profile
const profile = await client.businessProfile.update({
about: "We provide the best service!",
address: "123 Business St, City",
description: "Premium products and services",
email: "contact@business.com",
websites: ["https://www.business.com"]
});
// Get current profile
const currentProfile = await client.businessProfile.get();Configure conversational components like Welcome Messages, Ice Breakers, and Commands to enhance user interactions:
// Enable welcome message
await client.phoneNumber.setConversationalAutomation({
enable_welcome_message: true
});
// Configure ice breakers (prompts) - up to 4, each max 80 characters
await client.phoneNumber.setConversationalAutomation({
prompts: ['Book a flight', 'Plan a vacation', 'Find hotels', 'Get travel tips']
});
// Configure commands - up to 30, each command max 32 chars, description max 256 chars
await client.phoneNumber.setConversationalAutomation({
commands: [
{ command_name: 'tickets', command_description: 'Book flight tickets' },
{ command_name: 'hotel', command_description: 'Book hotel rooms' },
{ command_name: 'imagine', command_description: 'Create images using a text prompt' }
]
});
// Configure all features at once
await client.phoneNumber.setConversationalAutomation({
enable_welcome_message: true,
commands: [
{ command_name: 'tickets', command_description: 'Book flight tickets' }
],
prompts: ['Book a flight', 'Plan a vacation']
});
// Get current configuration
const config = await client.phoneNumber.getConversationalAutomation();
console.log('Welcome message enabled:', config.enable_welcome_message);
console.log('Commands:', config.commands);
console.log('Ice breakers:', config.prompts);// Get phone number details
const phoneInfo = await client.phoneNumber.getPhoneNumberById();
console.log('Display number:', phoneInfo.display_phone_number);
console.log('Quality rating:', phoneInfo.quality_rating);
console.log('Verified name:', phoneInfo.verified_name);
// Get specific fields only
const phoneDetails = await client.phoneNumber.getPhoneNumberById(
'display_phone_number,verified_name,code_verification_status'
);// Block a user (only works for users who messaged you in last 24 hours)
const blockResult = await client.blockUsers.block(['1234567890']);
console.log('Blocked users:', blockResult.block_users.added_users);
console.log('Failed to block:', blockResult.block_users.failed_users);
// Block multiple users at once
const multiBlockResult = await client.blockUsers.block([
'1234567890',
'0987654321',
'1122334455'
]);
// Unblock users
const unblockResult = await client.blockUsers.unblock(['1234567890']);
// Get list of blocked users with pagination
const blockedUsers = await client.blockUsers.listBlockedUsers({
limit: 10
});
// Iterate through all blocked users
let cursor: string | undefined;
const allBlockedUsers = [];
do {
const page = await client.blockUsers.listBlockedUsers({
limit: 100,
after: cursor
});
page.data.forEach(item => {
if (item.block_users) {
allBlockedUsers.push(...item.block_users);
}
});
cursor = page.paging?.cursors?.after;
} while (cursor);
console.log(`Total blocked users: ${allBlockedUsers.length}`);// Create a flow
const flow = await client.flows.create({
name: "Customer Survey",
categories: ["SURVEY"],
clone_flow_id: "existing_flow_id" // Optional
});
// Update flow
const updatedFlow = await client.flows.update({
flowId: flow.id,
name: "Updated Survey",
categories: ["SURVEY", "FEEDBACK"]
});We provide ready-to-use example projects demonstrating integration with different frameworks:
A simple echo bot that responds to any text message. Perfect for getting started!
cd examples/express-example
npm install
cp env.example .env # Configure your credentials
npm run devNext.js implementation with API routes for webhook handling.
cd examples/nextjs-page-router-example
npm install
cp env.example .env.local # Configure your credentials
npm run devUse specific imports for better tree-shaking:
// Import specific API classes
import { MessagesApi } from 'meta-cloud-api/messages';
import { MediaApi } from 'meta-cloud-api/media';
import { TemplateApi } from 'meta-cloud-api/template';
// Import specific webhook handlers
import { webhookHandler } from 'meta-cloud-api/webhook/express';
import { webhookHandler } from 'meta-cloud-api/webhook/nextjs';
// Import types and enums
import { MessageTypesEnum, InteractiveTypesEnum } from 'meta-cloud-api/types/enums';
import type { WhatsAppConfig } from 'meta-cloud-api/types/config';interface WhatsAppConfig {
accessToken: string; // Required: Meta Cloud API access token
phoneNumberId: number; // Required: WhatsApp phone number ID
businessAcctId?: string; // Optional: Business account ID
apiVersion?: string; // Optional: API version (default: v21.0)
webhookVerificationToken?: string; // Optional: For webhook verification
requestTimeout?: number; // Optional: Request timeout in ms
}try {
const result = await client.messages.text({
to: "15551234567",
body: "Hello World"
});
} catch (error) {
if (error.response?.data?.error) {
console.error('Meta API Error:', error.response.data.error);
} else {
console.error('Network Error:', error.message);
}
}- Node.js 18 LTS or later
- TypeScript 4.5+ (for TypeScript projects)
We welcome contributions! Please see our Contributing Guide for details.
This project is licensed under the MIT License - see the LICENSE file for details.