From zero to your first AI-powered WhatsApp message in 5 minutes.
# Sign up at app.businessclawai.com # You'll get: # - tenant_id (your unique ID) # - Firebase auth credentials # - Free tier: 500 requests/day
# In Dashboard → Channels → WhatsApp → Connect # Choose a BSP (Meta Cloud API recommended for start) # Complete embedded signup (5 minutes) # Your WhatsApp Business number is now live
curl -X PUT https://api.businessclawai.com/api/v1/agents/greeter \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"name": "greeter",
"instruction": "You are a helpful assistant for my restaurant...",
"greeting": "Hi! Welcome to Spice Garden. How can I help?",
"skills": ["faq_responder", "lead_capture", "appointment_booking"]
}'curl -X POST https://api.businessclawai.com/v1/send \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"channel": "whatsapp",
"to": "+91XXXXXXXXXX",
"message": "Hello from my AI agent! 🎉"
}'
# Response: { "status": "sent", "message_id": "msg_..." }# Configure webhook URL in Dashboard → Settings → Webhooks
# POST https://your-server.com/webhook/businessclaw
#
# Incoming payload:
# {
# "event": "message.received",
# "channel": "whatsapp",
# "from": "+91XXXXXXXXXX",
# "message": "I want to book a table",
# "tenant_id": "your_tenant",
# "agent_response": "Sure! For how many guests?..."
# }Your AI agent is now handling WhatsApp conversations. Next steps: