← 返回 Skills 市场
javainthinking

Email check and vaildation

作者 javainthinking · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
522
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install apipick-email-checker
功能描述
Validate email addresses using the apipick Email Validator API. Performs syntax checking, MX record verification, and disposable/throwaway email detection. U...
使用说明 (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.

安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install apipick-email-checker
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /apipick-email-checker 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug apipick-email-checker
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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。

💬 留言讨论