WhatsApp API Integration for business is a messaging platform that enables businesses to communicate with customers efficiently through WhatsApp.
It supports message broadcasting, rich media sharing, and chatbot integration, helping businesses improve customer engagement and customer support.
Businesses can use the WhatsApp API to deliver high-quality customer service and effectively reach their target audience.
The WhatsApp API allows businesses to send text messages and push notifications directly to customers.
Notifications can be used to deliver important information and updates.
GET /api/sendText?token=<instance id>&phone=<phone>&message=<message>
Example URL:
http://whatsappsms.domain.in/api/sendText?token=&phone=91xxxxxxxxxx&message=hello
| Parameter | Description |
|---|---|
| token | Instance ID |
| phone | Phone number with country code (e.g. 91xxxxxxxxxx) |
| message | Message content encoded using urlencode |
{
"status": "success",
"message": "00-Success",
"data": {
"connStatus": true,
"messageIDs": [
"61b84e20683424077a302b00"
]
},
"responsetime": 4.589305109
}
<?php $instance = '123XXX456XXXX789'; $whatsapp_number = '123XXXXXX'; $content = 'Hello World'; $url = "http://whatsappsms.creativepoint.in/api/sendText?token=".$instance."&phone=".$whatsapp_number."&message=".urlencode($content); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($ch); curl_close($ch); echo $response; ?>
Download the complete WhatsApp API integration guide and technical documentation.
Download WhatsApp API DocumentationGet started with our WhatsApp Business API and enhance your customer communication today.
Contact Us Today