WUTS API
A professional, multi-tenant WhatsApp gateway you can integrate in minutes.
WUTS is a high-performance WhatsApp gateway API. Pair a device, then send and receive messages, manage groups and contacts, broadcast status updates, and stream every event to your backend through webhooks โ all over a clean, predictable REST interface.
Base URL
All requests are made to:
https://api.wuts.com.brAuthentication
Every request is authenticated with a Bearer token in the Authorization
header. Your token is a UUID issued when your user is created and scopes every
call to your tenant.
curl https://api.wuts.com.br/status \
-H "Authorization: Bearer 00000000-0000-0000-0000-000000000000"See Authentication for token types, roles, and the master token used by Super Admin endpoints.
Send your first message
Once a device is paired and connected, sending a text message is a single call:
curl -X POST https://api.wuts.com.br/send/text \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{ "number": "5511999999999", "text": "Hello from WUTS ๐" }'What you can build
- Conversational apps โ two-way messaging with text, media, buttons, lists, and interactive templates.
- Notifications & alerts โ transactional delivery with delivery/read receipts and webhooks.
- Group automation โ create groups, manage participants, invites, and communities.
- Event-driven integrations โ subscribe to inbound messages, receipts, calls, and connection events via webhooks.
Use the sidebar to explore the full API Reference, grouped by capability.