The most powerful WhatsApp API Gateway. Send messages, manage groups, schedule broadcasts. Forever free.
Powerful features, beautifully simple API
Simple REST endpoints. Comprehensive documentation. Works with any language or framework.
const response = await fetch(
'/api/session/:id/send',
{
method: 'POST',
headers: {
'x-api-key': 'your-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
to: '6281234567890',
message: 'Hello! 👋'
})
}
);
// ✓ Message sent!