Introduction
The Wapiuu API accepts JSON-based REST calls over HTTPS. Send your API key in the Authorization header with every request. Base URL: https://api.wapiuu.com/v2
curl -X GET https://api.wapiuu.com/v2/me
-H "Authorization: Bearer YOUR_API_KEY"Authentication
Create an API key from the panel. Keep it secure and send it in requests as Authorization: Bearer <token>. If compromised, revoke it in the panel and create a new key.
Authorization: Bearer sk_live_xxxxxxxxxxxxSending Messages
Use POST /v2/messages to send single or bulk messages. In the body include recipient number (international format), message text and optional template ID. A successful response returns message_id.
POST /v2/messages
{
"to": "905xxxxxxxxx",
"body": "Hello, this is a test message."
}Webhooks
Register your webhook URL for incoming messages and delivery statuses. Add it in Panel > Webhooks. Verify signature on GET for validation; events are sent as POST with JSON body.
X-Webhook-Signature: sha256=...