> ## Documentation Index
> Fetch the complete documentation index at: https://docs.signalbridgedata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Tracking Implementation

> Correctly install and verify SignalBridge tracking

This guide helps you verify your SignalBridge tracking is implemented correctly.

## Checklist

* Pixel initialized with the correct `pixel_id`
* `pixel.js` loads successfully from your tracking domain
* You see `PageView` events in the dashboard

## Minimal implementation

```html theme={null}
<script>
  window.sb_queue = window.sb_queue || [];
  window.sb_track = function(event, data) {
    window.sb_queue.push({ event, data });
  };
  sb_track('init', 'YOUR_PIXEL_ID');
  sb_track('PageView');

  var s = document.createElement('script');
  s.src = 'https://tracking.yourdomain.com/pixel.js';
  s.async = true;
  document.head.appendChild(s);
</script>
```

## Verify

* Open your site → DevTools → Console
* Look for initialization logs
* Then check Events in: [Dashboard](https://www.signalbridgedata.com/dashboard)
