Home Features Pricing Why WappDesk Docs & API Login Start Free 14-Day Trial
DEVELOPER HUB & REST API

WappDesk API Documentation

Connect your CRM, e-commerce store, or custom backend to send WhatsApp template messages, trigger webhooks, and manage leads programmatically.

API Overview

The WappDesk REST API allows developers to send WhatsApp messages, automate lead capture, and query contact statuses using HTTPS requests. All responses are returned in JSON format.

Base Endpoint URL: https://wappdesk.tech/api/v1

Authentication

Authenticate your requests by including your API Secret Key in the HTTP Request Header:

Authorization: Bearer YOUR_WAPPDESK_API_KEY Content-Type: application/json

Send WhatsApp Template Message

POST /api/v1/messages/send-template
curl -X POST https://wappdesk.tech/api/v1/messages/send-template \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "phone": "+919876543210", "template_name": "order_confirmation", "language": "en", "parameters": [ { "type": "text", "text": "Rahul" }, { "type": "text", "text": "#ORD-88219" } ] }'
Sample Success Response (200 OK)
{ "status": "success", "message_id": "wamid.HBgLOTE5ODc2NTQzMjEwFQIAERgSRjQ1QkU5OEE3Q0Q0OUE2M0FEAA==", "phone": "+919876543210", "delivered_at": "2026-09-09T00:38:00Z" }