{
  "schemaVersion": "1.0",
  "item": {
    "slug": "apipick-email-checker",
    "name": "Email check and vaildation",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/javainthinking/apipick-email-checker",
    "canonicalUrl": "https://clawhub.ai/javainthinking/apipick-email-checker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/apipick-email-checker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=apipick-email-checker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/api_reference.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/apipick-email-checker"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/apipick-email-checker",
    "agentPageUrl": "https://openagent3.xyz/skills/apipick-email-checker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/apipick-email-checker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/apipick-email-checker/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "apipick Email Validator",
        "body": "Validate email addresses with syntax check, MX record lookup, and disposable email detection."
      },
      {
        "title": "Endpoint",
        "body": "POST https://www.apipick.com/api/check-email\n\nAuthentication: x-api-key: YOUR_API_KEY header required.\nGet a free API key at https://www.apipick.com/dashboard/api-keys"
      },
      {
        "title": "Request",
        "body": "{\"email\": \"user@example.com\"}"
      },
      {
        "title": "Response",
        "body": "{\n  \"success\": true,\n  \"code\": 200,\n  \"message\": \"Email validation complete\",\n  \"data\": {\n    \"email\": \"user@example.com\",\n    \"valid\": true,\n    \"syntax_valid\": true,\n    \"mx_valid\": true,\n    \"disposable\": false,\n    \"domain\": \"example.com\",\n    \"normalized\": \"user@example.com\",\n    \"reason\": null\n  },\n  \"credits_used\": 1,\n  \"remaining_credits\": 99\n}\n\nKey fields:\n\nvalid: true only when both syntax_valid AND mx_valid are true\ndisposable: true if the domain is a known throwaway email service\nreason: explanation when validation fails (null on success)\nnormalized: canonical lowercase form of the email"
      },
      {
        "title": "Error Codes",
        "body": "CodeMeaning400Invalid request401Missing or invalid API key402Insufficient credits\n\nCost: 1 credit per request"
      },
      {
        "title": "Usage Pattern",
        "body": "Use $APIPICK_API_KEY env var as the x-api-key header value; if not set, ask the user for their apipick API key\nMake the POST request with the email address\nReport the valid status and flag if disposable is true\nShow reason when validation fails\n\nSee references/api_reference.md for full response field descriptions."
      }
    ],
    "body": "apipick Email Validator\n\nValidate email addresses with syntax check, MX record lookup, and disposable email detection.\n\nEndpoint\nPOST https://www.apipick.com/api/check-email\n\n\nAuthentication: x-api-key: YOUR_API_KEY header required. Get a free API key at https://www.apipick.com/dashboard/api-keys\n\nRequest\n{\"email\": \"user@example.com\"}\n\nResponse\n{\n  \"success\": true,\n  \"code\": 200,\n  \"message\": \"Email validation complete\",\n  \"data\": {\n    \"email\": \"user@example.com\",\n    \"valid\": true,\n    \"syntax_valid\": true,\n    \"mx_valid\": true,\n    \"disposable\": false,\n    \"domain\": \"example.com\",\n    \"normalized\": \"user@example.com\",\n    \"reason\": null\n  },\n  \"credits_used\": 1,\n  \"remaining_credits\": 99\n}\n\n\nKey fields:\n\nvalid: true only when both syntax_valid AND mx_valid are true\ndisposable: true if the domain is a known throwaway email service\nreason: explanation when validation fails (null on success)\nnormalized: canonical lowercase form of the email\nError Codes\nCode\tMeaning\n400\tInvalid request\n401\tMissing or invalid API key\n402\tInsufficient credits\n\nCost: 1 credit per request\n\nUsage Pattern\nUse $APIPICK_API_KEY env var as the x-api-key header value; if not set, ask the user for their apipick API key\nMake the POST request with the email address\nReport the valid status and flag if disposable is true\nShow reason when validation fails\n\nSee references/api_reference.md for full response field descriptions."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/javainthinking/apipick-email-checker",
    "publisherUrl": "https://clawhub.ai/javainthinking/apipick-email-checker",
    "owner": "javainthinking",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/apipick-email-checker",
    "downloadUrl": "https://openagent3.xyz/downloads/apipick-email-checker",
    "agentUrl": "https://openagent3.xyz/skills/apipick-email-checker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/apipick-email-checker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/apipick-email-checker/agent.md"
  }
}