MOBIAP Demo
Real-time customer support widget with live chat, order tracking, and automated responses. Built for e-commerce and SaaS platforms.
Interactive Demo
Code Example
// Initialize Live Chat widget
const chat = new LiveChatWidget({
apiKey: 'mobiap_live_xxxxxxxx',
position: 'bottom-right',
theme: 'dark'
});
// Configure auto-responses
chat.on('message', async (msg) => {
if (msg.text.includes('order')) {
const order = await api.getOrder(msg.userId);
chat.reply('Your order #' + order.id + ' is ' + order.status);
} else if (msg.text.includes('help')) {
chat.transferToAgent('support');
}
});
// Open chat
chat.open();Features
Discuss your project. We'll show a demo and estimate cost.