Multi-channel ABM automation that turns LinkedIn URLs into coordinated outbound campaigns. Scrapes profiles, enriches with Apollo (email + phone), gets mailing addresses via Skip Trace, then orchestrates email sequences, LinkedIn touches, and handwritten letters via Scribeless. The secret weapon for standing out in crowded inboxes.
将领英潜在客户名单转化为多渠道对外拓展:邮件序列、领英互动和手写信件。
| 服务 | 用途 | 注册地址 |
|---|---|---|
| Apify | 领英数据抓取、地址追踪 | apify.com |
| Apollo |
bash
export APIFYAPIKEY=your_key
export APOLLOAPIKEY=your_key
export SCRIBELESSAPIKEY=your_key
┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ 1. 输入 │───▶│ 2. 抓取 │───▶│ 3. 补充 │───▶│ 4. 地址 │───▶│ 5. 对外拓展 │
│ 领英 │ │ 个人资料 │ │ 邮箱/电话 │ │ 地址追踪 │ │ │
│ URL │ │ │ │ │ │ │ │ │
└─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘
你的名单 Apify Apollo Apify PFI 邮件 +
领英 +
Scribeless
提供领英个人资料URL列表,来源包括:
csv
linkedin_url
https://linkedin.com/in/johndoe
https://linkedin.com/in/janesmith
bash
curl -X POST https://api.apify.com/v2/acts/harvestapi~linkedin-profile-scraper/run-sync-get-dataset-items \
-H Authorization: Bearer $APIFYAPIKEY \
-H Content-Type: application/json \
-d {
profileUrls: [
https://linkedin.com/in/johndoe,
https://linkedin.com/in/janesmith
]
}
返回结果: 名字、姓氏、公司、职位、所在地。
bash
curl -X POST https://api.apollo.io/api/v1/people/bulk_match \
-H X-Api-Key: $APOLLOAPIKEY \
-H Content-Type: application/json \
-d {
revealpersonalemails: true,
revealphonenumber: true,
details: [{
first_name: John,
last_name: Doe,
organization_name: Acme Corp,
linkedin_url: https://linkedin.com/in/johndoe
}]
}
返回结果: 工作邮箱、电话号码。
bash
curl -X POST https://api.apify.com/v2/acts/one-api~skip-trace/run-sync-get-dataset-items \
-H Authorization: Bearer $APIFYAPIKEY \
-H Content-Type: application/json \
-d {name: [John Doe]}
返回结果: 街道地址、城市、州、邮政编码。
重要提示: 确认地址追踪的州与领英所在地一致。
选项1:Apollo序列(推荐)
bash
curl -X POST https://api.apollo.io/api/v1/emailercampaigns/addcontact_ids \
-H X-Api-Key: $APOLLOAPIKEY \
-H Content-Type: application/json \
-d {
emailercampaignid: YOURSEQUENCEID,
contactids: [CONTACTID1, CONTACTID_2],
sendemailfromemailaccountid: YOUREMAILACCOUNTID
}
选项2:Instantly.ai
bash
curl -X POST https://api.instantly.ai/api/v1/lead/add \
-H Authorization: Bearer $INSTANTLYAPIKEY \
-H Content-Type: application/json \
-d {
campaignid: YOURCAMPAIGN_ID,
email: john@acme.com,
first_name: John,
last_name: Doe,
company_name: Acme Corp,
personalization: Saw Acme just expanded to UK
}
选项3:CSV上传
csv
email,firstname,lastname,company,title,phone,personalization
john@acme.com,John,Doe,Acme Corp,VP Marketing,555-1234,Saw Acme just expanded to UK
在platform.scribeless.co创建活动,然后添加收件人:
bash
curl -X POST https://platform.scribeless.co/api/recipients \
-H X-API-Key: $SCRIBELESSAPIKEY \
-H Content-Type: application/json \
-d {
campaignId: YOURCAMPAIGNID,
data: {
firstName: John,
lastName: Doe,
company: Acme Corp,
address: {
address1: 123 Main St,
city: San Francisco,
state: CA,
postalCode: 94102,
country: US
},
variables: {
custom1: Saw Acme just expanded to the UK — congrats!
}
}
}
完整API详情请参见references/scribeless-api.md。
| 天数 | 邮件 | 领英 | 信件 |
|---|---|---|---|
| 1 | — | 查看个人资料 | 寄出信件 |
| 3 |
策略: 信件送达 → 邮件提及 → 领英强化。
python
csv
firstname,lastname,email,phone,company,title,address1,city,state,postal,country,linkedin,mailable
John,Doe,john@acme.com,555-1234,Acme Corp,VP Marketing,123 Main St,San Francisco,CA,94102,US,linkedin.com/in/johndoe,TRUE
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 abm-outbound-1776381929 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 abm-outbound-1776381929 技能
skillhub install abm-outbound-1776381929
文件大小: 5.78 KB | 发布时间: 2026-4-17 15:23