Measure what matters. Track the full journey from social signal to paying customer.
The Funnel
IntentFlare tracks 4 stages of your conversion funnel:
Signal (thread discovered) → Click (user visits your link) → Signup → Purchase
How It Works
- Signals — Every thread IntentFlare discovers and scores is a signal
- Clicks — When someone clicks the link in your comment, it's tracked via UTM parameters
- Signups — When that visitor signs up on your site
- Purchases — When they convert to a paying customer
Setting Up Tracking
Add UTM parameters to the links in your comments. IntentFlare generates these automatically:
https://yoursite.com?utm_source=intentflare&utm_medium=reddit&utm_campaign=thread_123
On your website, fire a tracking event when key actions happen:
// On signup
fetch('https://api.intentflare.com/api/conversions/track', {
method: 'POST',
body: JSON.stringify({
event_type: 'signup',
thread_id: 'from_utm_param',
platform: 'reddit',
utm_source: 'intentflare',
utm_campaign: 'thread_123'
})
});
// On purchase
fetch('https://api.intentflare.com/api/conversions/track', {
method: 'POST',
body: JSON.stringify({
event_type: 'purchase',
thread_id: 'from_utm_param',
platform: 'reddit',
utm_source: 'intentflare',
utm_campaign: 'thread_123'
})
});
Viewing the Funnel
Go to Dashboard → Analytics to see:
- Total signals, clicks, signups, and purchases
- Conversion rate at each stage
- Breakdown by platform (which platform drives the most conversions?)
- Trends over time
Privacy
- IP addresses are hashed (SHA-256) — we never store raw IPs
- No cookies or third-party trackers
- UTM-based attribution only