await fetch('/api/send', {
body: JSON.stringify({
to: '+41791234567',
text: 'Order shipped!'
})
});ChatSuite
online
Managing multiple WhatsApp accounts
One dashboard for all your WhatsApp sessions with real-time status monitoring
Building WhatsApp into your app
Simple REST API to send messages, receive webhooks, and manage contacts
Keeping connections stable
Automatic reconnection, session persistence, and 24/7 monitoring
Scan a QR code to link your WhatsApp account. Takes 30 seconds.
Generate an API token from your dashboard to authenticate requests.
Use our REST API to send messages, or configure webhooks for incoming messages.
Connect and manage multiple WhatsApp accounts from one dashboard
Send messages and manage contacts programmatically
// Send a WhatsApp message
const response = await fetch(
'https://api.chatsuite.akson.ch/messages',
{
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
sessionId: 'your-session-id',
to: '41791234567',
text: 'Hello from ChatSuite!'
})
}
);
const result = await response.json();
console.log(result);
// { success: true, messageId: "..." }Receive real-time notifications for incoming messages
Track conversations and manage customer data
Automatic session recovery when connections drop
Connect with your CRM, helpdesk, or custom app