Free builder

WhatsApp Bot Builder

Design your WhatsApp Business chatbot flow visually. Export to JSON, then plug into Twilio, Gupshup, WATI, Interakt or your own backend.

Step 1Message
Step 2Menu

Options

Step 3Question
Step 4Handoff

Add a step

Preview

Hi! Send any message to begin.
Hi 👋 Welcome to Acme. I can help with orders, support and pricing.
What would you like to do?
â–¸ Track order
â–¸ Talk to sales
â–¸ Get support
Please share your order ID

→ saves to {{order_id}}

Connecting you to a human agent…
{
  "bot_name": "Acme Bot",
  "welcome_message": "Hi! Send any message to begin.",
  "flow": [
    {
      "id": "n1",
      "type": "message",
      "text": "Hi 👋 Welcome to Acme. I can help with orders, support and pricing."
    },
    {
      "id": "n2",
      "type": "menu",
      "text": "What would you like to do?",
      "options": [
        "Track order",
        "Talk to sales",
        "Get support"
      ]
    },
    {
      "id": "n3",
      "type": "question",
      "text": "Please share your order ID",
      "variable": "order_id"
    },
    {
      "id": "n4",
      "type": "handoff",
      "text": "Connecting you to a human agent…"
    }
  ]
}