WhatsApp Business API Service

Send WhatsApp messages from your own number. Dashboard campaigns and API integration for automated notifications.

Starting Price

0.50 TK/Message

Delivery Rate

99%

Media Support

Images, PDF, Video

WhatsApp Message Demo

See WhatsApp in Action

ICOMBD Business

Your order #12345 has been confirmed! Delivery expected by tomorrow.

10:30 AM
ICOMBD Business

Here's your OTP: 456789

10:31 AM
ICOMBD Business

Special offer: Get 20% off on your next purchase!

10:32 AM

WhatsApp Business Features

Official Business Account

Verified WhatsApp Business account with green tick

Media Messages

Send images, videos, documents, and audio files

Template Messages

Pre-approved message templates for various use cases

Bulk Campaigns

Send messages to thousands of recipients at once

API Integration

Easy integration with your existing systems

Advanced Analytics

Detailed delivery and engagement reports

Pre-Approved Message Templates

Order Updates

Order confirmation, shipping updates, delivery notifications

Template ID: ORDER_UPDATE
Security Alerts

Login alerts, OTP verification, security notifications

Template ID: SECURITY_ALERT
Promotional

Special offers, discounts, sales announcements

Template ID: PROMOTIONAL
Appointment Reminders

Appointment confirmations, reminders, rescheduling

Template ID: APPOINTMENT
Notifications

General notifications, updates, announcements

Template ID: NOTIFICATION
Emergency Alerts

Urgent alerts, emergency notifications

Template ID: EMERGENCY

Dashboard Campaigns vs API Integration

Dashboard Campaigns

Perfect for manual campaigns and one-time broadcasts

  • Easy-to-use dashboard
  • Upload contact lists
  • Schedule messages
  • Campaign analytics
  • No coding required

API Integration

Ideal for automated notifications and system integration

  • REST API access
  • Real-time messaging
  • Automated triggers
  • Webhook support
  • Scalable solution

API Integration Examples

Send Template Message

// Send WhatsApp template message
$apiKey = 'YOUR_API_KEY';
$apiUrl = 'https://api.icomdb.com/v1/whatsapp/send';

$data = [
    'api_key' => $apiKey,
    'to' => '88017XXXXXXXX',
    'template_name' => 'ORDER_UPDATE',
    'parameters' => [
        'order_id' => '12345',
        'customer_name' => 'John Doe',
        'delivery_date' => '2024-12-25'
    ]
];

$ch = curl_init($apiUrl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Content-Type: application/json'
]);

$response = curl_exec($ch);
curl_close($ch);
                            
Send Media Message

// Send WhatsApp media message
$apiKey = 'YOUR_API_KEY';
$apiUrl = 'https://api.icomdb.com/v1/whatsapp/send-media';

$data = [
    'api_key' => $apiKey,
    'to' => '88017XXXXXXXX',
    'type' => 'image', // image, video, document, audio
    'media_url' => 'https://example.com/image.jpg',
    'caption' => 'Check out our new product!'
];

$ch = curl_init($apiUrl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Content-Type: application/json'
]);

$response = curl_exec($ch);
curl_close($ch);
                            

Pricing Packages

Starter

৳1,999

for 1,000 messages

  • 1,000 messages
  • Text messages only
  • Dashboard access
  • Basic templates
  • No API access

Enterprise

৳29,999

for 25,000 messages

  • 25,000 messages
  • All message types
  • Custom templates
  • Webhook support
  • 24/7 support

Business Use Cases

E-commerce

Order updates, delivery tracking, promotions

Banking

Transaction alerts, OTP, account updates

Healthcare

Appointment reminders, test results, health tips

Education

Class updates, exam schedules, fee reminders

Loading...