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

# Quick start

> Get Tag Insight up and running in under 5 minutes

## Overview

Tag Insight can be set up in just a few simple steps. This guide will walk you through the process of getting your first tracking plan monitored.

<Steps>
  <Step title="Create your account">
    Sign up for Tag Insight and create your organization
  </Step>

  <Step title="Create a project">
    Set up your first project for the property you want to monitor
  </Step>

  <Step title="Install the pixel">
    Add the Tag Insight pixel to your website
  </Step>

  <Step title="Import your tracking plan">
    Import your existing tracking plan or create a new one
  </Step>

  <Step title="Start monitoring">
    Configure your audits and start receiving alerts
  </Step>
</Steps>

## 1. Create your organization

When you first log into Tag Insight, you'll need to create an organization. This is the top-level container for all your projects.

<Note>
  Organizations can contain multiple projects, allowing you to manage tracking for different brands, environments, or properties.
</Note>

## 2. Create your first project

Projects in Tag Insight represent individual tracking implementations. Each project gets its own unique pixel.

<img src="https://mintcdn.com/taginsight/poFMsZzsIjoQTyP7/images/2_project_creation@2x.png?fit=max&auto=format&n=poFMsZzsIjoQTyP7&q=85&s=33fe78480a20f847d826d6f5f30f5c91" alt="Create New Project" style={{borderRadius: "8px", margin: "20px 0"}} width="2338" height="1684" data-path="images/2_project_creation@2x.png" />

<AccordionGroup>
  <Accordion icon="folder-plus" title="Creating a project">
    1. Click **New Project** from your organization dashboard
    2. Enter a project name (e.g., "Production - Main Site")
    3. Select your Tag Management System (GTM, Commander Act, or Tealium)
    4. Add a project logo (optional but recommended for documentation)
    5. Click **Create Project**
  </Accordion>

  <Accordion icon="lightbulb" title="Project best practices">
    * Create separate projects for different environments (staging, production)
    * Use descriptive names that include the environment and property
    * One pixel = one project, so plan accordingly
  </Accordion>
</AccordionGroup>

## 3. Install the Tag Insight pixel

The Tag Insight pixel is a lightweight JavaScript tag that monitors your data layers in real-time.

### Installation via Google Tag Manager

```javascript theme={null}
<script>
(function() {
  var script = document.createElement('script');
  script.src = 'https://cdn.taginsight.com/pixel/YOUR_PROJECT_ID.js';
  script.async = true;
  document.head.appendChild(script);
})();
</script>
```

<Warning>
  Replace `YOUR_PROJECT_ID` with your actual project ID from the Tag Insight dashboard.
</Warning>

### Key features of the pixel

* **Lightweight**: Less than 200KB
* **Privacy-compliant**: No cookies, exempt from consent requirements
* **Performance-optimized**: Asynchronous loading, no impact on page speed
* **Universal**: Works with any data layer structure

## 4. Import your tracking plan

Tag Insight offers multiple methods to import your tracking plan:

<CardGroup cols={2}>
  <Card title="Automatic detection" icon="wand-magic-sparkles" href="/tracking-plans/import-methods">
    Use the Detect Tracking Plan feature to automatically discover and import your existing implementation
  </Card>

  <Card title="Chrome extension" icon="chrome" href="/tools/chrome-extension">
    Use our Chrome extension to capture data layers as you browse your site
  </Card>

  <Card title="Manual import" icon="file-import" href="/tracking-plans/creating-plans">
    Import from Excel or create your tracking plan manually
  </Card>

  <Card title="Templates" icon="copy" href="/tracking-plans/event-library">
    Start from pre-built templates for common implementations
  </Card>
</CardGroup>

### Quick import with Chrome extension

<Steps>
  <Step title="Install extension">
    Install the Tag Insight Chrome extension from the Chrome Web Store
  </Step>

  <Step title="Activate capture">
    Navigate to your website and click the extension icon to start capturing
  </Step>

  <Step title="Browse your site">
    Navigate through key user journeys (product views, add to cart, checkout)
  </Step>

  <Step title="Import events">
    Stop capture and select which events to import into your project
  </Step>
</Steps>

## 5. Configure your first audit

Once your tracking plan is imported, set up automated monitoring:

```javascript theme={null}
// Example audit configuration
{
  "name": "Daily production audit",
  "frequency": "daily",
  "time": "09:00",
  "duration": "1 hour",
  "trackingPlan": "main-tracking-plan",
  "alertEmail": "team@company.com"
}
```

### Audit configuration options

* **Frequency**: Hourly, daily, weekly, or continuous
* **Scope**: Full tracking plan or specific events
* **Alerts**: Email notifications for regressions
* **Sampling**: Choose between sampled or full traffic analysis

## Next steps

Congratulations! Tag Insight is now monitoring your tracking implementation. Here's what to do next:

<CardGroup cols={2}>
  <Card title="Configure alerts" icon="bell" href="/monitoring/alerts">
    Set up alert rules and notification preferences
  </Card>

  <Card title="Explore reports" icon="chart-bar" href="/monitoring/audit-reports">
    Learn how to read and act on audit reports
  </Card>

  <Card title="Add team members" icon="users" href="/platform-overview/user-management">
    Invite your team and set up permissions
  </Card>

  <Card title="Advanced setup" icon="cog" href="/implementation/environments">
    Configure multi-environment monitoring
  </Card>
</CardGroup>

<Info>
  Need help? Contact our support team at [support@taginsight.com](mailto:support@taginsight.com) or check out our [FAQ](/troubleshooting/faq).
</Info>
