Cold Email Enrichment with SERP Data
SERP data provides fresher personalization than static databases. Recent news, Reddit mentions, and YouTube talks make better opening lines.
Cold email response rates correlate directly with personalization quality. SERP data -- what shows up when you search the prospect's company -- provides richer personalization signals than any static database. Recent news, job postings, product launches, and community mentions all surface through search and all make better opening lines than "I noticed you're the VP of Marketing."
Why SERP Data Beats Static Databases
ZoomInfo and Apollo give you job titles, company size, and funding data. This data is months old. SERP data is hours old. A company that just raised a Series B, launched a product, or posted a hiring surge shows different signals in search than in a static database. These fresh signals create personalization that feels current, not templated.
Enrichment Pipeline
For each prospect company: search Google for recent news, search Reddit for community mentions, and search YouTube for recent talks or demos. Extract the freshest signal and use it as the personalization hook.
import requests, os
H = {"x-api-key": os.environ["SCAVIO_API_KEY"]}
def enrich_prospect(company_name):
"""Enrich prospect with SERP signals."""
signals = {}
# Google: recent news and announcements
google_r = requests.post("https://api.scavio.dev/api/v1/search",
headers=H,
json={"platform": "google",
"query": f"{company_name} news 2026"},
timeout=10
).json()
signals["recent_news"] = [
{"title": r["title"], "snippet": r.get("snippet", "")}
for r in google_r.get("organic", [])[:3]
]
# Reddit: community sentiment
reddit_r = requests.post("https://api.scavio.dev/api/v1/search",
headers=H,
json={"platform": "reddit",
"query": f"{company_name} experience"},
timeout=10
).json()
signals["reddit_mentions"] = [
{"title": r["title"], "snippet": r.get("snippet", "")}
for r in reddit_r.get("organic", [])[:3]
]
return signals
enriched = enrich_prospect("Vercel")
for news in enriched["recent_news"]:
print(f"News: {news['title']}")
for mention in enriched["reddit_mentions"]:
print(f"Reddit: {mention['title']}")Generating Personalization Hooks
Take the freshest signal and turn it into an opening line. "Saw you just launched X" beats "I noticed your company uses Y" because it proves you did actual research, not a database lookup.
def generate_hook(company_name, signals):
"""Pick the best personalization hook from SERP signals."""
# Priority: recent news > reddit mentions
if signals.get("recent_news"):
top = signals["recent_news"][0]
return f"Saw {company_name} in the news: {top['title']}. "
if signals.get("reddit_mentions"):
top = signals["reddit_mentions"][0]
return f"Noticed {company_name} being discussed on Reddit. "
return f"Been following what {company_name} is building. "
hook = generate_hook("Vercel", enriched)
print(f"Opening: {hook}")Batch Enrichment at Scale
from concurrent.futures import ThreadPoolExecutor
import csv
def batch_enrich(prospects_file, output_file):
"""Enrich a CSV of prospects with SERP data."""
with open(prospects_file) as f:
prospects = list(csv.DictReader(f))
def enrich_one(prospect):
company = prospect.get("company", "")
if not company:
return prospect
signals = enrich_prospect(company)
prospect["hook"] = generate_hook(company, signals)
prospect["news_count"] = len(signals.get("recent_news", []))
return prospect
with ThreadPoolExecutor(max_workers=5) as pool:
enriched = list(pool.map(enrich_one, prospects))
with open(output_file, "w", newline="") as f:
writer = csv.DictWriter(f, fieldnames=enriched[0].keys())
writer.writeheader()
writer.writerows(enriched)
print(f"Enriched {len(enriched)} prospects")
# batch_enrich("prospects.csv", "enriched_prospects.csv")Cost per Enriched Prospect
Two search queries per prospect (Google + Reddit) = 2 credits = $0.01 per prospect at Scavio's $0.005/credit pricing. For 1,000 prospects: $10 total. Compare to ZoomInfo ($15K+/year) or Apollo ($49-119/month). SERP enrichment costs a fraction and returns fresher data. The tradeoff: you get signals, not structured CRM fields like direct phone numbers.
Combining with Email Tools
Feed enriched prospects into Instantly ($30/month) or Smartlead ($39/month) for automated outreach. The SERP-enriched hooks go into the first line of each email template. Track open rates and reply rates by enrichment signal type to learn which signals drive the best responses.