LinkedIn Email Finder
收藏LinkedIn Email Finder 数据集概述
基本信息
- 数据集名称: LinkedIn Email Finder
- 提供商: vulnv
- 类别: Email
- 状态: Freemium
- 流行度: 8.8 Popularity
- 服务等级: 100% Service Level
- 延迟: 592ms Latency
- 测试通过率: 100% Test
定价计划
- BASIC: $0.00 / 月
- PRO: $0.00 / ---
功能描述
通过LinkedIn个人资料URL即时查找专业电子邮件地址。无需LinkedIn账户,无需抓取,无需手动操作。
端点
- 端点:
GET /email/find - 描述: 查找LinkedIn个人资料的电子邮件
快速开始
单次查找示例 (Python)
python import requests
url = "https://linkedin-email-finder-api.p.rapidapi.com/email/find"
params = {"url": "https://www.linkedin.com/in/williamhgates/"}
headers = { "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY", "X-RapidAPI-Host": "linkedin-email-finder-api.p.rapidapi.com" }
response = requests.get(url, headers=headers, params=params) print(response.json())
响应示例
json { "total": 1, "found": 1, "not_found": 0, "results": [ { "linkedin_url": "https://www.linkedin.com/in/williamhgates", "found": true, "email": "bill@gatesfoundation.org", "name": "Bill Gates", "domain": "gatesfoundation.org", "company": "Bill & Melinda Gates Foundation" } ] }
Node.js示例
javascript const axios = require(axios);
const response = await axios.get( https://linkedin-email-finder-api.p.rapidapi.com/email/find, { params: { url: https://www.linkedin.com/in/williamhgates/ }, headers: { X-RapidAPI-Key: YOUR_RAPIDAPI_KEY, X-RapidAPI-Host: linkedin-email-finder-api.p.rapidapi.com } } ); console.log(response.data);
端点参考
GET /email/find
查找单个LinkedIn个人资料的电子邮件地址。
参数:
| 参数 | 类型 | 必需 | 描述 |
|---|---|---|---|
url |
string | ✅ | LinkedIn个人资料URL(例如:https://linkedin.com/in/username) |
响应字段:
| 字段 | 类型 | 描述 |
|---|---|---|
found |
boolean | 是否发现电子邮件 |
email |
string | null |
name |
string | null |
company |
string | null |
domain |
string | null |
接受的URL格式
所有标准的LinkedIn个人资料URL格式都被接受:
https://linkedin.com/in/username https://www.linkedin.com/in/username https://uk.linkedin.com/in/username linkedin.com/in/username ← https:// 会自动添加
使用提示
found: false仍计为一次请求 — 并非每个个人资料都有可发现的电子邮件。典型的查找率在40-70%之间,具体取决于行业和资历。- 使用准确的LinkedIn URL — 需要
/in/路径格式。公司或工作页面URL将被拒绝,并返回400错误。 - 结果不缓存 — 每个请求都执行实时查找,以最大限度地提高新鲜度。
错误代码
| 代码 | 含义 |
|---|---|
200 |
成功(检查每个结果的 found 字段) |
400 |
无效的LinkedIn URL格式 |
403 |
无效或缺少API密钥 |
422 |
缺少必需参数 |
503 |
服务暂时不可用 |
免责声明
不隶属于LinkedIn Corporation。电子邮件发现是通过第三方数据源对公开可用的专业信息进行的。



