r/agencynewbies 的一篇帖子描述了该机构本地潜在客户的倦怠:晚上在地图上、打开网站、检查评论、寻找电子邮件。这相当于自动行走。
前置条件
- Outscraper API 密钥(免费 500 条记录)
- Scavio API 密钥
- 猎人 API 密钥
- n8n 或 Python 脚本作为协调器
操作指南
步骤 1: 通过 Outscraper 批量提取地图记录
每个城市的每个利基。
POST https://api.app.outscraper.com/maps/search
Api-Key: <key>
Query: 'plumber San Diego'
Limit: 500步骤 2: 迭代记录:每个企业的 Scavio 资格
每条记录 5 个呆子。
Text
// site:BUSINESS-DOMAIN -> active website?
// 'COMPANY review 2026' -> recent review tone
// 'site:linkedin.com/company COMPANY' -> social presence
// 'reddit COMPANY review' -> any community signal
// 'COMPANY contact' -> email/phone discoverability步骤 3: 按信号密度对每个记录进行评分
简单的标题。
Text
// Signal score: has website (1) + recent reviews >=5 (2) + LinkedIn (1) + reachable email/phone (2) + no Reddit complaints (1) = max 7步骤 4: 按分数筛选前 N 名候选人
质量>数量。
Text
// Top 20% by score = real prospects worth a touch步骤 5: 通过 Hunter 验证电子邮件
放弃接受所有和一次性的。
GET https://api.hunter.io/v2/email-verifier?email={email}&api_key=<key>步骤 6: 推送至 Smartlead/Lemlist 进行外展
标准 CSV 导入。
Text
// CSV: company, website, owner_name, email, phone, signal_score, sourcePython 示例
Python
# Per-niche-per-city math: 1K Outscraper records ($3) + 200 qualification queries Scavio ($0.86) + 200 email validations Hunter (~$3-5) = under $10 per cycle of 200 qualified prospects.JavaScript 示例
JavaScript
// Same flow in TS via Outscraper + Scavio + Hunter SDKs.预期输出
JSON
200 qualified, signal-scored prospects per niche-city cycle. Replaces ~10 hours of manual research with ~$10 of API calls. The only manual step is reviewing the top-tier list before send.