Docs
App
Installation

Install Bantico

Bantico works on any website. To install it, set your Bantico token before loading the Bantico tracking script.

Replace YOUR_TOKEN with your public Bantico token.

Simplest approach

On every HTML page, add your Bantico token and the Bantico tracking script inside the head of your document.

index.html
<html lang="en">  <head>    <script>      window.BANTICO_TOKEN = "YOUR_TOKEN";    </script>    <script src="https://app.bantico.com/bantico.js"></script>  </head>  <body>  </body></html>