API Documentation
Complete reference for the WAB2C WhatsApp Business API.
Base URL
https://api.wab2c.com/v1Authentication
All API requests require authentication using a Bearer token in the Authorization header.
Authorization: Bearer YOUR_API_KEYMessaging API
POST
/v1/messages/sendSend a message
POST
/v1/messages/templateSend template message
POST
/v1/messages/mediaSend media message
POST
/v1/messages/catalogSend catalog message
GET
/v1/messages/{id}Get message status
Code Examples
Send a message using your preferred language.
const response = await fetch('https://api.wab2c.com/v1/messages/send', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
to: '923300003097',
type: 'text',
text: { body: 'Hello from WAB2C!' }
})
});
const data = await response.json();
console.log(data);Rate Limits
| Plan | Requests/min | Messages/day |
|---|---|---|
| Starter | 60 | 1,000 |
| Growth | 120 | 5,000 |
| Pro | 300 | 15,000 |
| Enterprise | 600 | Unlimited |
Need help integrating?
Our engineering team is available to assist with your integration.
Chat with an Engineer