WhatsApp Chatbot • Auto-reply • Webhook

WhatsApp chatbot & auto-reply to serve customers automatically

No developer: set keyword auto-replies from the dashboard. Have a developer: hook webhooks (HMAC-SHA256) and reply via the API. Free 100 messages/month, paid from $1.

Try chatbot free See pricing
What can a WhatsApp chatbot do?

24/7 auto-reply

Answer common questions like opening hours, location, pricing, and order status without staying on standby manually.

Keyword-based

Set automatic replies when a customer sends a specific keyword, quick to set up from the dashboard.

Connected to your system

Use webhooks so incoming messages are processed by your system/AI, then send a dynamic reply via the API.

How auto-reply & webhooks work
  • 1. Message arrives, a customer chats your WhatsApp number.
  • 2. Forwarded via webhook, LoginWA sends the event to your system endpoint.
  • 3. Your system processes it, check keywords, a database, or AI as needed.
  • 4. Send a reply, reply automatically via the LoginWA API.

For simple needs, just set up keyword auto-reply without coding from the dashboard.

# Example incoming-message webhook payload
POST https://your-server.com/webhook
{
  "from": "+6281234567890",
  "message": "pricing",
  "received_at": "2026-06-01T08:00:00Z"
}

# Reply automatically via API
POST https://api.loginwa.com/api/v1/messages/send
{
  "phone": "+6281234567890",
  "message": "Check our price list here 😊"
}
Keyword auto-reply, or webhooks for custom logic

Set rules in the dashboard with no code. HMAC-SHA256 webhooks if you need your own server. Free 100 messages/month.

Start free
WhatsApp chatbot FAQ

What are WhatsApp chatbot and auto-reply?

Keyword rules from the dashboard, or a webhook to your server. Replies use the same quota as OTP and blast.

Can I set automatic replies based on keywords?

Yes. You can set up auto-reply based on keywords or message patterns. For more complex logic, use a webhook so incoming messages are processed by your system and replies are sent back via the API.

Can the LoginWA WhatsApp chatbot connect to my system?

Yes. Through webhooks, every incoming message is forwarded to your endpoint. You are free to process it with business logic, a database, or AI, then send a reply using the LoginWA API.

Does auto-reply run 24 hours a day?

Rules run while a device is online. There is no separate business-hours switch in the dashboard.

Do I need to code to build a WhatsApp chatbot?

For keyword-based auto-reply, set it up from the dashboard with no coding. For advanced flows, use webhooks and the API with your keys.