← Back to Skills Marketplace
javainthinking

Email check and vaildation

by javainthinking · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
522
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install apipick-email-checker
Description
Validate email addresses using the apipick Email Validator API. Performs syntax checking, MX record verification, and disposable/throwaway email detection. U...
README (SKILL.md)

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.

Usage Guidance
This skill appears coherent and implements a straightforward third-party email-validation call, but be aware it will send any email addresses you ask it to validate to apipick.com (these are potentially personal data). Provide the APIPICK_API_KEY via a secure mechanism (do not paste keys into public chat), monitor credits and API usage, and review apipick.com's privacy policy before validating sensitive addresses. If you need an on‑prem or local validation (to avoid sending PII externally), prefer a different tool that performs DNS/MX checks locally instead of calling an external API.
Capability Analysis
Type: OpenClaw Skill Name: apipick-email-checker Version: 1.0.0 The skill bundle is designed to validate email addresses using the apipick Email Validator API. All files (SKILL.md, README.md, _meta.json, references/api_reference.md) consistently describe this functionality. The SKILL.md instructions for the AI agent are clear, directly related to the stated purpose, and correctly handle the API key by requiring it from an environment variable (`APIPICK_API_KEY`) or prompting the user. There is no evidence of prompt injection attempts, data exfiltration, malicious execution, persistence mechanisms, or any other indicators of harmful intent. The external API call to `https://www.apipick.com/api/check-email` is central to its stated function.
Capability Assessment
Purpose & Capability
Name/description match the declared requirements: the skill only needs APIPICK_API_KEY and describes calling apipick.com's email-check endpoint — nothing extraneous is requested.
Instruction Scope
SKILL.md instructs the agent to POST the user-supplied email to https://www.apipick.com/api/check-email using the APIPICK_API_KEY; this is appropriate for the stated purpose but will transmit any validated email addresses (PII) to the third-party API.
Install Mechanism
Instruction-only skill with no install spec and no bundled code — nothing is written to disk or downloaded during install.
Credentials
Only a single environment variable (APIPICK_API_KEY) is required, which directly corresponds to the documented API authentication; no unrelated credentials or config paths are requested.
Persistence & Privilege
always is false and the skill does not request elevated or system-wide persistence; autonomous invocation is allowed by default and is not excessive here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install apipick-email-checker
  3. After installation, invoke the skill by name or use /apipick-email-checker
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of the apipick-email-validation skill. - Validates email addresses for syntax, MX records, and disposable domains using the apipick Email Validator API. - Requires an apipick API key (set as APIPICK_API_KEY environment variable). - Returns detailed response including validity, disposal status, and explanations for failures.
Metadata
Slug apipick-email-checker
Version 1.0.0
License
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

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.

💬 Comments