Quick Start (5 Minutes)
- Sign up for SigVault and create your account
- Get your tracking token from the dashboard Settings page
-
Add the tracking script to your website's
<head>section - Start tracking events using the JavaScript SDK or interception mode
- View your data in the SigVault dashboard
Parallel Mode Setup
Parallel mode tracks events independently alongside your existing tracking setup.
Step 1: Add the Tracking Script
Add this script to your website's <head> section:
<script src="https://track.getsigvault.com/v1/sdk.js"></script>
<script>
window.sigvault.init('YOUR_TRACKING_TOKEN');
</script>
Step 2: Track Events
Track events anywhere on your site:
// Track a purchase
window.sigvault.track('purchase', {
value: 99.99,
customer_email: 'customer@example.com',
order_id: '12345'
});
// Track a lead
window.sigvault.track('lead', {
customer_email: 'lead@example.com',
customer_name: 'John Doe'
});
Interception Mode Setup
Interception mode automatically captures Facebook Pixel, Google Analytics, and GTM events.
Step 1: Add the Interception Script
Add this script before your Facebook Pixel or Google Analytics code:
<script src="https://track.getsigvault.com/v1/sdk-interception.js"></script>
<script>
window.sigvault.init('YOUR_TRACKING_TOKEN', { mode: 'interception' });
</script>
Step 2: That's It!
SigVault will automatically capture all fbq(), gtag(), and dataLayer.push() events and send them to SigVault while also forwarding them to the original platforms.
Platform-Specific Guides
WordPress
Add the tracking script via theme header or plugin
Shopify
Install via theme code editor or app
Wix
Add custom code in site settings
BigCommerce
Add script to storefront footer
Need Help?
Can't find what you're looking for? Our support team is here to help.
Contact Support