Workflow

n8n Cold Outreach with Live Context Workflow

Per-prospect Scavio enrichment in n8n powers personalized outreach with reply rates 2-3x generic blasts.

Overview

n8n workflow that loops a prospect list, fetches live per-prospect context via Scavio (recent news, Reddit signal, hiring posts), drafts personalized openers with an LLM, and sends via Smartlead/Instantly/Lemlist.

Trigger

Cron daily 9 AM or manual webhook

Schedule

Daily 9 AM

Workflow Steps

1

Cron or Webhook trigger

Daily cadence or on-demand from CRM.

2

Pull prospect list

From Google Sheets, Airtable, or CRM via webhook payload.

3

Split In Batches

Batch size 10 for rate-limit comfort.

4

Scavio: recent news per prospect

POST /api/v1/search with `{{$json.company}} 2026 hiring funding` query.

5

Scavio: Reddit signal per prospect

POST /api/v1/reddit/search with company name query.

6

LLM: draft personalized opener

Prompt with news + Reddit; output 1-sentence first line tied to one specific item.

7

Email send

Smartlead / Instantly / Lemlist node with personalized opener and templated body.

Python Implementation

Python
import os, requests
H = {'x-api-key': os.environ['SCAVIO_API_KEY']}

def enrich(p):
    s = requests.post('https://api.scavio.dev/api/v1/search', headers=H, json={'query': f"{p['company']} 2026 hiring"}).json()
    r = requests.post('https://api.scavio.dev/api/v1/reddit/search', headers=H, json={'query': p['company']}).json()
    return {'serp': s.get('organic_results', [])[:3], 'reddit': r.get('posts', [])[:3]}

JavaScript Implementation

JavaScript
const H = { 'x-api-key': process.env.SCAVIO_API_KEY, 'Content-Type': 'application/json' };
async function enrich(p) {
  const [s, r] = await Promise.all([
    fetch('https://api.scavio.dev/api/v1/search', { method: 'POST', headers: H, body: JSON.stringify({ query: `${p.company} 2026 hiring` }) }).then(r => r.json()),
    fetch('https://api.scavio.dev/api/v1/reddit/search', { method: 'POST', headers: H, body: JSON.stringify({ query: p.company }) }).then(r => r.json())
  ]);
  return { s, r };
}

Platforms Used

Google

Web search with knowledge graph, PAA, and AI overviews

Reddit

Community, posts & threaded comments from any subreddit

Frequently Asked Questions

n8n workflow that loops a prospect list, fetches live per-prospect context via Scavio (recent news, Reddit signal, hiring posts), drafts personalized openers with an LLM, and sends via Smartlead/Instantly/Lemlist.

This workflow uses a cron daily 9 am or manual webhook. Daily 9 AM.

This workflow uses the following Scavio platforms: google, reddit. Each platform is called via the same unified API endpoint.

Yes. Scavio's free tier includes 500 credits per month with no credit card required. That is enough to test and validate this workflow before scaling it.

n8n Cold Outreach with Live Context Workflow

Per-prospect Scavio enrichment in n8n powers personalized outreach with reply rates 2-3x generic blasts.