Quick Start

Get AI Search Index running on your website in under 5 minutes.

1

Create an Account

Sign up for a free AI Search Index account to get your tracking ID.

Create Account
2

Add Your Website

In the dashboard, click "Add Website" and enter your domain name. You'll receive a unique tracking ID.

3

Add the Tracking Pixel

Add the following script tag to your website, just before the closing </body> tag:

HTMLRecommended
<!-- AI Search Index - Tracking Pixel -->
<script>
(function(){
  var img = new Image(1,1);
  var params = "tid=YOUR_TRACKING_ID&url=" + encodeURIComponent(window.location.href);
  if (document.referrer) params += "&ref=" + encodeURIComponent(document.referrer);
  img.src = "https://api.aisearchindex.com/api/pixel?" + params;
  img.style.cssText = "position:absolute;left:-9999px;visibility:hidden";
  img.alt = "";
  document.body.appendChild(img);
})();
</script>
<noscript><img src="https://api.aisearchindex.com/api/pixel?tid=YOUR_TRACKING_ID" width="1" height="1" style="position:absolute;left:-9999px;visibility:hidden" alt="" /></noscript>

Important: Replace YOUR_TRACKING_ID with the tracking ID from your dashboard.

4

Verify Installation

Visit your website and check the browser's Developer Tools Network tab. You should see a request to https://api.aisearchindex.com/api/pixel. Then check your dashboard for the incoming data.

Tip: Filter by "Img" in the Network tab to find the tracking pixel request quickly.

You're Done!

That's it! AI Search Index will now start tracking AI bots visiting your website. Visit your dashboard to see real-time analytics.

Lightweight inline script
No cookies
GDPR friendly

Next Steps