Achooo SDK

Current version: 0.1.0

Available Bundles

Latest (stable alias)

Pinned version

Documentation

Quick Start

Add this universal snippet to every page — hotel website and booking engine. The Avvio adapter auto-detects when present; on non-Avvio pages it's a no-op.

<script src="https://cdn.achooo.io/v1/achooo.min.js"></script>
<script>
  (function() {
    var achooo = Achooo.createAchooo({
      hotelId: 'YOUR_HOTEL_ID',
      ingestEndpoint: 'https://api.achooo.io',
      handoffEndpoint: 'https://handoff.achooo.io',
      adapterAutoDetect: true
    });
    achooo.init();
    window.achooo = achooo;
  })();
</script>