Coming Soon
Documentation

Install the Tracking Script

Add Flowpoint to your website in under 2 minutes. Choose your platform below and follow the guide.

Replace YOUR-SITE-ID with the Site ID from your Flowpoint dashboard.

HTML Website

Add the tracking script to the <head> section of your HTML files.

index.html
<!DOCTYPE html>
<html>
<head>
  <title>Your Website</title>
  <script>
  (function () {
    var s = document.createElement("script");
    s.src = "https://cdn.flowpoint.ai/t/YOUR-SITE-ID.js?v=" + Date.now();
    s.async = 1;
    document.head.appendChild(s);
  })();
</script>
</head>
<body>
  <!-- Your content -->
</body>
</html>

Place the script before the closing </head> tag on every page you want to track.

Custom Events

Once the tracking script is installed, you can track custom events using the global flowpoint() function. This is available automatically after the script loads.

javascript
// Track a simple event
flowpoint("event", "button_click");
javascript
// Track an event with custom data
flowpoint("event", "purchase", {
  product_id: "12345",
  product_name: "Premium Plan",
  price: 99.99,
  currency: "USD"
});

Custom events appear in your dashboard under the Events section. You can also use them as funnel steps and conversion goals.

Ready to go?

Once the script is installed, head to your dashboard to verify the installation and start creating dashboards with AI.

Open Dashboard