Email check and vaildation
/install apipick-email-checker
apipick Email Validator
Validate email addresses with syntax check, MX record lookup, and disposable email detection.
Endpoint
POST https://www.apipick.com/api/check-email
Authentication: x-api-key: YOUR_API_KEY header required.
Get a free API key at https://www.apipick.com/dashboard/api-keys
Request
{"email": "[email protected]"}
Response
{
"success": true,
"code": 200,
"message": "Email validation complete",
"data": {
"email": "[email protected]",
"valid": true,
"syntax_valid": true,
"mx_valid": true,
"disposable": false,
"domain": "example.com",
"normalized": "[email protected]",
"reason": null
},
"credits_used": 1,
"remaining_credits": 99
}
Key fields:
valid:trueonly when bothsyntax_validANDmx_validare truedisposable:trueif the domain is a known throwaway email servicereason: explanation when validation fails (null on success)normalized: canonical lowercase form of the email
Error Codes
| Code | Meaning |
|---|---|
| 400 | Invalid request |
| 401 | Missing or invalid API key |
| 402 | Insufficient credits |
Cost: 1 credit per request
Usage Pattern
- Use
$APIPICK_API_KEYenv var as thex-api-keyheader value; if not set, ask the user for their apipick API key - Make the POST request with the email address
- Report the
validstatus and flag ifdisposableis true - Show
reasonwhen validation fails
See references/api_reference.md for full response field descriptions.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install apipick-email-checker - 安装完成后,直接呼叫该 Skill 的名称或使用
/apipick-email-checker触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Email check and vaildation 是什么?
Validate email addresses using the apipick Email Validator API. Performs syntax checking, MX record verification, and disposable/throwaway email detection. U... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 522 次。
如何安装 Email check and vaildation?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install apipick-email-checker」即可一键安装,无需额外配置。
Email check and vaildation 是免费的吗?
是的,Email check and vaildation 完全免费(开源免费),可自由下载、安装和使用。
Email check and vaildation 支持哪些平台?
Email check and vaildation 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Email check and vaildation?
由 javainthinking(@javainthinking)开发并维护,当前版本 v1.0.0。