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.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install apipick-email-checker - After installation, invoke the skill by name or use
/apipick-email-checker - Provide required inputs per the skill's parameter spec and get structured output
What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 522 downloads so far.
How do I install Email check and vaildation?
Run "/install apipick-email-checker" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Email check and vaildation free?
Yes, Email check and vaildation is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Email check and vaildation support?
Email check and vaildation is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Email check and vaildation?
It is built and maintained by javainthinking (@javainthinking); the current version is v1.0.0.