📚 Documentation

WaDevZone Documentation

Everything you need to integrate WhatsApp into your applications. Learn how to authenticate, create sessions, send messages and receive webhooks.

Getting Started

Start in less than 5 Minutes

Follow these simple steps to start sending WhatsApp messages using WaDevZone API.

1
person_add

Create Account

Register your WaDevZone account and verify your email to access the dashboard.

2
key

Generate API Key

Create your first API Key from your dashboard.

3
qr_code_2

Connect WhatsApp

Scan the QR Code using your WhatsApp application.

4
send

Send Messages

Call the REST API and start sending messages immediately.

Installation

Base URL

All requests must be sent to the following endpoint.

Base URL

https://api.wadevzone.com/api/v1
Security

Authentication

Every request requires your API Token.

Authorization Header

Authorization: Bearer YOUR_API_KEY
info

Important

Never expose your API Key inside frontend applications. Always keep it on your backend server.

Example

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"
}'