Unified Messaging API

Connect with customers via WhatsApp, SMS, and Email through a single powerful platform. Scalable, reliable, and developer-friendly.

WhatsApp API

Send notifications and support messages programmatically. Unlimited messages with multi-device support.

$5 /month

SMS Gateway

Turn your Android device into an SMS gateway. Send unlimited SMS via REST API using your own SIM.

$2 /month

Email API

Manage multiple SMTP servers for transactional emails and marketing campaigns. High deliverability.

$5 /month

Feature Comparison

Feature WhatsApp SMS Email
API Access
Bulk Sending
Campaign Manager
Device/Server Limit Unlimited Unlimited Unlimited
Send WhatsApp (PHP)
$client = new UmvaClient('API_KEY');

$response = $client->whatsapp->send([
    'phone' => '+1234567890',
    'message' => 'Hello World!'
]);
Send SMS (cURL)
curl -X POST https://umva.net/api/sms/send \
  -H "Authorization: Bearer API_KEY" \
  -d "phone=+1234567890" \
  -d "message=Hello World"