Your Active WhatsApp Instances
Billing & Subscription
Manage your reseller license, invoices, and messaging limits.
Plan Status
Payment Methods
Reseller subscription fees are processed securely. Update your billing configurations below.
Primary Account
Message Statistics
Device Authentication
Device Disconnected
Your virtual WhatsApp Web instance is currently offline. You must scan the QR code to authenticate and link your account.
Message timing
Send Test Message
Send text, images, or documents through your WhatsApp session.
Danger zone
These actions affect the running instance and can't be undone
Message Delivery Log
| Timestamp | Direction | Phone / Recipient | Type | Message | Status |
|---|---|---|---|---|---|
| No records found. | |||||
Welcome Auto-Response
This message is sent automatically to any customer who contacts your WhatsApp number if they haven't written to you within the cooldown period.
Add Command Rule
Active Commands
| Trigger | Response Text | Delete |
|---|---|---|
| No custom commands registered. | ||
Developer REST API Integration
| Parameter | Type | Status | Description |
|---|---|---|---|
| to | string | Required | Recipient phone with country code e.g. "923219668717" |
| body | string | Required | Text message content to send. |
curl -X POST \
"https://primemsg.net/api/instances/ID/send/chat?token=TOKEN" \
-H "Content-Type: application/json" \
-d '{"to": "923219668717", "body": "Hello! 🚀"}'
<?php
$ch = curl_init("https://primemsg.net/api/instances/ID/send/chat?token=TOKEN");
curl_setopt_array($ch, [
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => json_encode(['to' => '923219668717', 'body' => 'Hello! 🚀']),
CURLOPT_HTTPHEADER => ['Content-Type: application/json'],
CURLOPT_RETURNTRANSFER => true
]);
echo curl_exec($ch); curl_close($ch);
?>
fetch('http://localhost:3000/api/instances/ID/send/chat?token=TOKEN', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ to: '923219668717', body: 'Hello! 🚀' })
}).then(r => r.json()).then(console.log);