Built for startups,
scaled for unicorns
Successfully submitted!
Error! Please try again
Referred leads are statistically more likely to convert β studies show they have 30% higher conversion rates and 16% higher lifetime value than non-referred leads. Your lead scoring model should reflect this advantage. By integrating GrowSurf referral data into HubSpot's lead scoring system, you can automatically prioritize referred contacts for sales follow-up.
This guide shows you how to incorporate referral signals into your HubSpot lead scoring model. You'll learn how to award bonus points for referred leads, score based on referrer quality, and create automated workflows that fast-track high-scoring referral leads to your sales team.
Ensure your GrowSurf referral data is flowing into HubSpot contact properties. If you haven't set this up yet, follow the HubSpot Referral Tracking guide first.
referral_source, referred_by_email, referral_statusreferrer_lifetime_referrals (Number) β how many total referrals the referrer has madereferrer_conversion_rate (Number) β percentage of referrer's referrals that convertAdd referral-specific criteria to your HubSpot lead scoring model to give referred contacts a scoring advantage.
referral_source equals "growsurf"referred_by_email is known (was personally referred)Not all referrers are equal. Score referred leads higher when they come from proven referrers with high conversion rates.
Create HubSpot workflows that automatically assign high-scoring referral leads to your best sales reps or fast-track them through your pipeline.
referral_source = growsurfMonitor whether your referral scoring adjustments actually predict conversion. Refine your scoring model based on real data.
// Enrich HubSpot contact with referrer quality data
async function enrichReferralLeadScore(participantEmail, referrerData) {
// Calculate referrer quality metrics
const referrerConversionRate = referrerData.referralsConverted /
Math.max(referrerData.referralsMade, 1);
let referrerTier = 'Bronze';
if (referrerConversionRate >= 0.5) referrerTier = 'Gold';
else if (referrerConversionRate >= 0.25) referrerTier = 'Silver';
// Update HubSpot contact with referrer quality data
await hubspotClient.crm.contacts.basicApi.update(
participantEmail,
{
properties: {
referrer_tier: referrerTier,
referrer_lifetime_referrals: referrerData.referralsMade.toString(),
referrer_conversion_rate: (referrerConversionRate * 100).toFixed(1)
},
idProperty: 'email'
}
);
}
// Example HubSpot lead scoring configuration (via API)
// POST /crm/v3/properties/contacts/hubspot_score
const scoringRules = {
positiveRules: [
{ criteria: 'referral_source eq growsurf', points: 15 },
{ criteria: 'referred_by_email is_known', points: 10 },
{ criteria: 'referrer_tier eq Gold', points: 20 },
{ criteria: 'referrer_tier eq Silver', points: 10 },
{ criteria: 'referrer_tier eq Bronze', points: 5 }
]
};While referred leads deserve a scoring bump, keep it proportional. A +15 to +25 point bonus is meaningful without overwhelming other behavioral signals like email engagement, page visits, and form submissions. The referral signal should complement, not replace, your existing scoring model.
Track which referrers consistently send leads that convert. Build a "referrer quality score" and use it to weight the bonus points given to their referrals. This creates a virtuous cycle where your scoring model gets smarter over time.
Referred leads have a personal connection driving their interest β capitalize on that momentum. Research shows that responding within 1 hour increases conversion by 7x. Use HubSpot workflows to create urgent tasks and send immediate follow-up emails.
It depends on your deal size and sales process. For lower-ACV products, referred leads with high scores can skip MQL and go straight to a sales conversation. For enterprise sales, they should still go through qualification but be prioritized over non-referred MQLs at the same score level.
Use GrowSurf's built-in fraud detection features (email verification, IP deduplication, referral limits) before data reaches HubSpot. Additionally, only award lead score bonuses after the referral has been verified β not just on initial referral creation.
Yes, if you're on HubSpot Enterprise. The predictive model will automatically learn that referred leads convert better if your referral properties are consistently populated. However, it's still valuable to add explicit referral criteria to your manual score as a baseline while the predictive model trains.
Trusted by marketing and product teams at fast-growing B2C, fintech, and SaaS companies
