Skip to main content
Kapso helps you send messages, receive replies, and automate WhatsApp with APIs, workflows, and team tools. Use it to run your own operations on WhatsApp or to onboard your customers and automate messaging on their behalf.

Choose a path

TypeScript SDK

Install the SDK if you want the fastest way to send messages from a TypeScript project.

Install

npm install @kapso/whatsapp-cloud-api

Send your first message

import { WhatsAppClient } from '@kapso/whatsapp-cloud-api';

const client = new WhatsAppClient({
  baseUrl: 'https://api.kapso.ai/meta/whatsapp',
  kapsoApiKey: process.env.KAPSO_API_KEY!
});

await client.messages.sendText({
  phoneNumberId: '647015955153740',
  to: '1234567890',
  body: 'Order confirmed! 📦'
});