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:
<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
One script tag for any website - the canonical embed every module wraps.
WordPressE2E verifiedPlugin with WooCommerce-aware visitor context and per-page visibility.
ShopifyE2E verifiedNode.js app - OAuth install plus a storefront-wide ScriptTag loader.
BigCommerceE2E verifiedNode.js app - OAuth install plus a Scripts API v3 storefront script.
WixE2E verifiedApp Market app that pushes your bot ID into a Wix Embedded Script.
JoomlaE2E verifiedSystem plugin for Joomla 4/5 - frontend-only injection with user context.
Magento 2Unit-testedComposer module for Magento 2.4 with customer and cart context.
OpenCartE2E verifiedEvent-based extension for OpenCart 3.x - no OCMOD file modifications.
EcwidE2E verifiedApp Market app using public storage and a storefront loader script.
PrestaShopE2E verifiedModule for PrestaShop 1.7/8 with per-page-type visibility control.
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.