Docs / Getting Started

Getting Started

Add Trackveil to your website in 5 minutes and start tracking visitors immediately.

1. Sign Up

Create your free account at dashboard.trackveil.net/signup. Your first site will be created automatically during signup.

2. Get Your Tracking Code

After signing up, you'll see your tracking snippet in the dashboard. It looks like this:

<script async src="https://cdn.trackveil.net/tracker.min.js" 
        data-site-id="YOUR_SITE_ID"></script>

3. Add to Your Website

Paste the tracking code before the closing </head> tag on every page you want to track.

That's it!

Trackveil will immediately start tracking visitors. Check your dashboard to see real-time data.

What Gets Tracked Automatically

Once installed, Trackveil automatically tracks:

Track Custom Events (Optional)

Want to track button clicks, purchases, or custom actions? Use the Trackveil.track() API:

// Simple event
Trackveil.track('Newsletter Signup');

// Event with properties
Trackveil.track('Purchase', {
  value: 29.99,
  currency: 'EUR',
  product: 'Premium Plan'
});

Learn more in the Custom Events guide.

Next Steps