Add Trackveil to your website in 5 minutes and start tracking visitors immediately.
Create your free account at dashboard.trackveil.net/signup. Your first site will be created automatically during signup.
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>
Paste the tracking code before the closing </head> tag on every page you want to track.
Trackveil will immediately start tracking visitors. Check your dashboard to see real-time data.
Once installed, Trackveil automatically tracks:
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.