Platform Integrations

Add the Conferbot chat widget to any website with one script tag, or install a ready-made module for your e-commerce or CMS platform. Nine official platform integrations are available - all open source on GitHub - and every one of them wraps the same web widget embed.

One credential: your bot ID

Every integration needs only the Chatbot ID - the 24-character hex ID from your Conferbot Dashboard (Bot Settings > General). No API key or workspace ID required. The platform modules also accept the full embed snippet or a dashboard URL and extract the ID automatically. For evaluation, the public demo bot 691c970890527a0468f9b2c9 works without an account.

The embed, in one glance

Everything on this page boils down to one call: window.ConferbotWidget(botId, embedType, options?). On a plain website you load the widget script from the CDN and call it yourself:

Compact embed
<script src="https://cdn.conferbot.com/dist/v1/widget.min.js" async id="conferbot-js"></script>
<script>
  window.ConferbotWidget('YOUR_BOT_ID', 'live_chat');
</script>

The full contract - the guarded loader snippet, the three embed types, the visitor identity options, and SPA/Next.js usage - is documented on the Web Widgetpage. Each platform module wraps this exact call in the platform's native extension mechanism, so merchants configure everything from their own admin panel and widget appearance stays fully dashboard-driven.

Choose your platform

💡

Building a mobile app instead?

The web widget and platform modules cover browsers. For native iOS, Android, Flutter, and React Native apps, see the Mobile SDKs.