Email check and vaildation

v1.0.0

Validate email addresses using the apipick Email Validator API. Performs syntax checking, MX record verification, and disposable/throwaway email detection. U...

0· 530· 1 versions· 0 current· 0 all-time· Updated 11h ago· MIT-0

Install

openclaw skills 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": "user@example.com"}

Response

{
  "success": true,
  "code": 200,
  "message": "Email validation complete",
  "data": {
    "email": "user@example.com",
    "valid": true,
    "syntax_valid": true,
    "mx_valid": true,
    "disposable": false,
    "domain": "example.com",
    "normalized": "user@example.com",
    "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

CodeMeaning
400Invalid request
401Missing or invalid API key
402Insufficient 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.

Version tags

latestvk970g0fvhg9gbzsem0j76x8z1h81nzk7

Runtime requirements

EnvAPIPICK_API_KEY
Primary envAPIPICK_API_KEY