Email Verification & Intelligence API
收藏Email Verification & Intelligence API 数据集概述
基本信息
- API名称: Email Verification & Intelligence API
- API分类: Email
- API提供者: Inas1234
- 订阅人数: 1
- 流行度: 8.6
- 服务等级: 100%
- 延迟: 78ms
功能概述
该API帮助开发者实时验证和分析电子邮件地址,主要功能包括:
- 电子邮件语法验证
- MX记录检查
- 一次性电子邮件检测
- 基于角色的账户过滤(如admin@, support@)
- 域名智能(SPF, DMARC)
- 批量电子邮件验证支持
定价计划
- BASIC: $0.00 / 月
- PRO: $9.00 / 月
- ULTRA: $29.00 / 月
- MEGA: $99.00 / 月
端点详情
✅ POST /verify
-
描述: 执行完整的电子邮件验证。
-
请求示例: json { "email": "admin@gmail.com" }
-
响应示例: json { "validSyntax": true, "hasMx": true, "isDisposable": false, "isRoleAccount": true }
📩 POST /is-role-account
-
描述: 检查电子邮件是否为通用/基于角色的账户。
-
请求示例: json { "email": "admin@gmail.com" }
-
响应示例: json { "isRoleAccount": true }
🗑️ POST /is-disposable
-
描述: 检测电子邮件是否来自已知的一次性电子邮件提供商。
-
请求示例: json { "email": "test@mailinator.com" }
-
响应示例: json { "isDisposable": true }
🌐 POST /domain-info
-
描述: 返回域名的DNS信息,包括MX、SPF和DMARC记录。
-
请求示例: json { "domain": "gmail.com" }
-
响应示例: json { "mx": [ { "exchange": "gmail-smtp-in.l.google.com", "priority": 5 } ], "spf": "v=spf1 include:_spf.google.com ~all", "dmarc": "v=DMARC1; p=none; rua=mailto:dmarc-reports@google.com" }
🧪 POST /bulk-verify
-
描述: 在单个请求中验证多个电子邮件地址。
-
请求示例: json { "emails": [ "admin@mailinator.com", "user@gmail.com" ] }
-
响应示例: json { "admin@mailinator.com": { "validSyntax": true, "hasMx": true, "isDisposable": true, "isRoleAccount": true }, "user@gmail.com": { "validSyntax": true, "hasMx": true, "isDisposable": false, "isRoleAccount": false } }
错误处理
-
400 – Bad Request: 缺少必填字段或格式不正确。 json { "error": "Email is required." }
-
404 – Not Found: 请求的路由不存在。 json { "error": "Route not found", "path": "/unknown-endpoint" }
-
500 – Internal Server Error: 服务器端出现问题。 json { "error": "Verification failed." }
认证
使用该API时,需在每次请求中包含以下头部:
X-RapidAPI-Key: YOUR_API_KEY X-RapidAPI-Host: email-verification-intelligence-api.p.rapidapi.com



