Disposable Discounter
DiDi public platform

Public search, chatbot and installation surface

Installation-aware widgets, public APIs and embeddable product experiences for the isolated Disposable Discounter platform.

Public runtime

The public layer is now ready to ship search and chatbot embeds on top of the isolated DiDi platform.

Use this surface to validate widgets, inspect API contracts and hand installation snippets to the host site without depending on Catalogueflow runtime services.

Search API
Hybrid
exact + lexical + vector
Chatbot isolation
iframe
postMessage bridge only
Catalogue sync
Daily
Channable feed + embeddings
Install fast

Start with the widgets

The public widgets already bootstrap against the live API and pick up runtime presentation from Mongo-backed configuration.

<script src="https://public.disposablediscounter.com/widgets/search.js" defer></script>
<script>
  window.addEventListener('load', () => {
    window.DidiSearchWidget.mount({
      target: document.getElementById('didi-search'),
      apiBaseUrl: 'https://public.disposablediscounter.com',
      publishableKey: 'pk_didi_live_***',
      locale: 'nl'
    });
  });
</script>
Open install guide