Move from simple SMS blasts to 2-way WhatsApp threads. Send order updates, product carousels, and automated customer support with official green-tick sender verification.
Drive conversions with rich media, interactive buttons, and automated AI bots.
Build instant brand trust with official Meta green tick verification on your business phone number profile.
Send images, PDF invoices, video tutorials, and interactive multi-product catalogs directly inside WhatsApp chats.
Include call-to-action buttons (e.g. "Track Order", "Pay Now", "Book Appointment") for 3x higher response rates.
Automate 80% of customer support queries with automated chatbot flows, FAQ responders, and CRM integrations.
Connect unlimited customer support agents to a single WhatsApp Business number with role-based routing.
Submit and manage Meta-approved message templates for order alerts, appointment reminders, and utility notifications.
Dispatch approved template messages to customer WhatsApp accounts in seconds.
# Send a WhatsApp Template Message via UKBD API curl -X POST https://api.ukbdmessaging.com/v3/whatsapp/send \ -H "Authorization: Bearer $UKBD_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "to": "+447958165346", "template_name": "order_dispatched", "language": "en", "parameters": ["Alex", "#UKBD-9821"] }'
import { Ukbd } from "@ukbd/sdk"; const ukbd = new Ukbd(process.env.UKBD_TOKEN); await ukbd.whatsapp.sendTemplate({ to: "+447958165346", templateName: "order_dispatched", language: "en", params: ["Alex", "#UKBD-9821"] });