LLM/Bot Tracking Pixel

This invisible pixel helps detect visits from language models and bots.

Note: You need access to your site's HTML header or body to enable the pixel.

Each page containing the snippet sends a small request back here, logging the visit.

  1. Copy the snippet below and paste it near the end of your site's <body> or inside the <head> section.
  2. Every time a bot loads the pixel, the visit will be recorded.
<noscript>
  <img src="https://app.seshes.ai/seshes-pixel" width="1" height="1" style="display:none;" alt="">
</noscript>
<script>
  new Image().src = "https://app.seshes.ai/seshes-pixel?page=" + encodeURIComponent(location.pathname);
</script>

You can review recorded visits on the LLM Visits page.

Instructions for Your Web Developer

If you cannot edit the site yourself, send the instructions below.

1. Insert this snippet before the closing </body> tag (or in the <head>):
<noscript>
  <img src="https://app.seshes.ai/seshes-pixel" width="1" height="1" style="display:none;" alt="">
</noscript>
<script>
  new Image().src = "https://app.seshes.ai/seshes-pixel?page=" + encodeURIComponent(location.pathname);
</script>
2. Save and deploy.