Loading your private session...

My WhatsApp Instance

Connect your personal WhatsApp account securely. This workspace never displays or uses another user's WhatsApp session.

1Open WhatsApp on your phone
2Go to Linked Devices
3Choose Link a Device
4Scan the QR code shown here

Loading QR Code...

Live Auto-Sync (Auto Refresh)
⚡ Instant Direct Message 🔒 End-to-End Encrypted

Single Message Messenger

Compose, format and instantly dispatch personalized WhatsApp messages with real-time phone preview.

Compose WhatsApp Message

Direct delivery from your connected WhatsApp session
With Country Code
Enter digits only with country code (e.g., 91 for India, 1 for US/Canada).
0 Chars

Live Phone Preview

Live Sync
←
Recipient online
TODAY

Type message to preview...

Just now ✓✓

Bulk WhatsApp Dispatcher

Send bulk messages from your private WhatsApp account with safe randomized delays.

Anti-Ban Protection Enabled

1. Add Contact Numbers

0 Numbers

2. Compose Message

0 Chars

3. Sending Speed & Delay

4 - 5 Seconds
4.5s

A randomized delay helps keep your WhatsApp activity natural.

Live Execution & Delivery Report

Ready
0 of 0 Completed0%
0Total
0Sent
0Failed
0Remaining

Delivery Log

#NumberStatusDetails
No messages sent yet. Add numbers and click Start Sending.
⚡ Universal REST API 🔑 SendBuddy Drop-In Compatible

Developer API & Integration Gateway

Integrate WhatsApp messaging into your VB.NET, C#, PHP, Python, or Web application using your personal instance.

🔑

Your Live Instance Credentials

These credentials authenticate your API calls. Keep your Access Token confidential.

Checking Status...
INSTANCE ID
Loading...
ACCESS TOKEN
••••••••••••••••••••
API BASE URL
Loading...
GET / POST /api/send
SendBuddy Drop-In

Instant WhatsApp message dispatcher. Compatible with existing SendBuddy desktop integrations (VB.NET, C#, Python, PHP). Call via standard HTTP GET query parameters or POST body.

⚡ Ready-to-Use Live URL
Generating your custom API link...

Request Parameters

Parameter Type Required Description
number (or phone) string Required Recipient mobile number with country code (e.g. 919876543210).
message string Required Text message content (URL-encoded). Supports WhatsApp formatting like *bold*, _italic_.
type string Optional Message type (text default).
instance_id string Required Your unique client instance ID (auto-filled).
access_token string Required Your private instance secret authorization token (auto-filled).

Ready-to-Use Code Snippets

VB.NET (Desktop Software)
POST /api/user/instances/{id}/send-message

Send a single message using application/json payload.

Request Body (JSON):
{
  "phoneNumber": "919876543210",
  "message": "Hello! Your invoice #1042 is ready."
}
POST /api/user/instances/{id}/send-bulk

Send bulk broadcast messages with randomized Anti-Ban jitter.

Request Body (JSON):
{
  "phoneNumbers": ["919876543210", "919876543211"],
  "message": "Festival special 20% discount offer!",
  "options": { "minDelayMs": 3000, "maxDelayMs": 5000 }
}

Standard API Response Format

✓ 200 OK (Success Response):
{
  "status": "success",
  "message": "Message sent successfully",
  "data": {
    "messageId": "true_919876543210@c.us_3EB0...",
    "timestamp": 1727091234
  }
}
✕ Error Response:
{
  "status": "error",
  "error": "WhatsApp client is not ready. Please scan QR first.",
  "code": "CLIENT_NOT_CONNECTED"
}