Jump to related tools in the same category or review the original source on GitHub.

Web & Frontend Development @javainthinking Updated 6/28/2026 873 downloads 0 stars Security: Pass

Apipick Email Checker OpenClaw Plugin & Skill | ClawHub

Looking to integrate Apipick Email Checker into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate web & frontend development tasks instantly, without having to write custom tools from scratch.

What this skill does

Validate email addresses using the apipick Email Validator API. Performs syntax checking, MX record verification, and disposable/throwaway email detection. Use when the user wants to verify an email address, check if an email domain exists and can receive mail, detect disposable or temporary emails, or validate email format. Requires an apipick API key (x-api-key). Get a free key at https://www.apipick.com.

Install

ClawHub CLI
openclaw skills install @javainthinking/apipick-email-checker
Node.js (npx)
npx clawhub@latest install apipick-email-checker

Full SKILL.md

Open original
Metadata table.
namedescription
apipick-email-validationValidate email addresses using the apipick Email Validator API. Performs syntax checking, MX record verification, and disposable/throwaway email detection. Use when the user wants to verify an email address, check if an email domain exists and can receive mail, detect disposable or temporary emails, or validate email format. Requires an apipick API key (x-api-key). Get a free key at https://www.apipick.com.

SKILL.md content below is scrollable.

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: true only when both syntax_valid AND mx_valid are true
  • disposable: true if the domain is a known throwaway email service
  • reason: 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

  1. Use $APIPICK_API_KEY env var as the x-api-key header value; if not set, ask the user for their apipick API key
  2. Make the POST request with the email address
  3. Report the valid status and flag if disposable is true
  4. Show reason when validation fails

See references/api_reference.md for full response field descriptions.

ClawHub Registry URL: https://clawhub.ai/javainthinking/skills/apipick-email-checker

Related skills

If this matches your use case, these are close alternatives in the same category.