WaDevZone Documentation
Everything you need to integrate WhatsApp into your applications. Learn how to authenticate, create sessions, send messages and receive webhooks.
Start in less than 5 Minutes
Follow these simple steps to start sending WhatsApp messages using WaDevZone API.
Create Account
Register your WaDevZone account and verify your email to access the dashboard.
Generate API Key
Create your first API Key from your dashboard.
Connect WhatsApp
Scan the QR Code using your WhatsApp application.
Send Messages
Call the REST API and start sending messages immediately.
Base URL
All requests must be sent to the following endpoint.
Base URL
https://api.wadevzone.com/api/v1
Authentication
Every request requires your API Token.
Authorization Header
Authorization: Bearer YOUR_API_KEY
Important
Never expose your API Key inside frontend applications. Always keep it on your backend server.
Your First Request
Send your first WhatsApp message using cURL.
cURL
curl --location 'https://api.wadevzone.com/api/v1/messages/send' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"session":"default",
"phone":"201001234567",
"message":"Hello from WaDevZone"
}'