通过五阶段验证对任意邮箱进行验证:语法检查、MX 查询、SMTP 握手、catch-all 检测,以及一次性邮箱 / 角色邮箱标记。返回判定(valid / invalid / risky / unknown)、0-100 置信度评分、MX 提供商和原因码。为批量而生:输入 10 万行列表,返回可直接用于外联的干净名单。适用于冷邮件清理、潜客名单清洗、注册表单保护和 CRM 送达性清理。
# 通过 Apify API 启动运行 curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~email-verifier/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "emails": [ "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]" ], "smtpCheck": true, "detectCatchAll": true }' # 或通过 MCP 与 AI 代理配合使用: # https://mcp.apify.com?tools=santamaria-automations/email-verifier
| 字段 | 类型 | 示例 |
|---|---|---|
| string | [email protected] | |
| status | string | valid |
| confidence | integer | 94 |
| is_deliverable | boolean | true |
| is_valid_format | boolean | true |
| mx_found | boolean | true |
| mx_provider | string | Google Workspace |
| is_disposable | boolean | false |
| is_role_based | boolean | false |
| is_catch_all | boolean | false |