{
  "schemaVersion": "1.0",
  "item": {
    "slug": "easy-email-finder",
    "name": "Easy Email Finder",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/faalbane/easy-email-finder",
    "canonicalUrl": "https://clawhub.ai/faalbane/easy-email-finder",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/easy-email-finder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=easy-email-finder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.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. 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. 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/easy-email-finder"
    },
    "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/easy-email-finder",
    "agentPageUrl": "https://openagent3.xyz/skills/easy-email-finder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/easy-email-finder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/easy-email-finder/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Easy Email Finder API",
        "body": "Use this skill to find business leads and their email addresses. The Easy Email Finder API lets you search for local businesses (via Google Places) or digital/online-only businesses (SaaS, agencies, e-commerce, etc.), then enrich them with verified emails scraped from their websites."
      },
      {
        "title": "Authentication",
        "body": "All requests require a Bearer token. The API key is available in the EEF_API_KEY environment variable.\n\nAuthorization: Bearer $EEF_API_KEY\n\nGet an API key at https://easyemailfinder.com/developer"
      },
      {
        "title": "Base URL",
        "body": "https://easyemailfinder.com/api/v1"
      },
      {
        "title": "Search for businesses (free — no credits)",
        "body": "# Local businesses (default)\ncurl -X POST https://easyemailfinder.com/api/v1/search \\\n  -H \"Authorization: Bearer $EEF_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"dentists in denver\", \"pageToken\": null}'\n\n# Digital/online-only businesses\ncurl -X POST https://easyemailfinder.com/api/v1/search \\\n  -H \"Authorization: Bearer $EEF_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"SaaS companies\", \"mode\": \"digital\"}'\n\nSet mode to \"local\" (default) for Google Places results or \"digital\" for online-only businesses. Returns business names, websites, and (for local mode) addresses, phone numbers, ratings, and Google Maps links. Use pageToken from the response to get the next page."
      },
      {
        "title": "Enrich a website with emails (1 credit per call)",
        "body": "curl -X POST https://easyemailfinder.com/api/v1/enrich \\\n  -H \"Authorization: Bearer $EEF_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"website\": \"https://example-business.com\"}'\n\nReturns: emails, techStack (wordpress/shopify/wix/squarespace/webflow/custom), socialLinks (facebook, instagram, linkedin, twitter, youtube, tiktok)."
      },
      {
        "title": "Batch enrich (1 credit per website, max 20)",
        "body": "curl -X POST https://easyemailfinder.com/api/v1/enrich-batch \\\n  -H \"Authorization: Bearer $EEF_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"websites\": [\"https://site1.com\", \"https://site2.com\"]}'"
      },
      {
        "title": "Search + enrich in one call (1 credit per result)",
        "body": "# Local businesses\ncurl -X POST https://easyemailfinder.com/api/v1/search-and-enrich \\\n  -H \"Authorization: Bearer $EEF_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"plumbers in austin\", \"limit\": 20}'\n\n# Digital businesses\ncurl -X POST https://easyemailfinder.com/api/v1/search-and-enrich \\\n  -H \"Authorization: Bearer $EEF_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"digital marketing agencies\", \"limit\": 20, \"mode\": \"digital\"}'\n\nCombines search and enrichment. limit defaults to 20, max 60. Supports mode: \"local\" (default) or \"digital\"."
      },
      {
        "title": "Check credit balance (free)",
        "body": "curl https://easyemailfinder.com/api/v1/balance \\\n  -H \"Authorization: Bearer $EEF_API_KEY\""
      },
      {
        "title": "View usage stats (free)",
        "body": "curl \"https://easyemailfinder.com/api/v1/usage?days=7\" \\\n  -H \"Authorization: Bearer $EEF_API_KEY\""
      },
      {
        "title": "Response Format",
        "body": "All responses follow this envelope:\n\n{\n  \"data\": { ... },\n  \"meta\": {\n    \"requestId\": \"req_abc123\",\n    \"creditsUsed\": 1,\n    \"remainingCredits\": 94.75\n  }\n}\n\nErrors:\n\n{\n  \"error\": { \"code\": \"INSUFFICIENT_CREDITS\", \"message\": \"...\" },\n  \"meta\": { \"requestId\": \"req_abc123\" }\n}"
      },
      {
        "title": "Rate Limits",
        "body": "Standard endpoints (search, balance, usage): 120 requests/minute\nEnrich endpoints: 30 requests/minute\nWhen rate limited, check the Retry-After response header"
      },
      {
        "title": "Credit Costs",
        "body": "EndpointCost/v1/searchFree/v1/enrich1 credit ($0.25)/v1/enrich-batch1 credit per website/v1/search-and-enrich1 credit per result/v1/balanceFree/v1/usageFree"
      },
      {
        "title": "Typical Workflow",
        "body": "Local businesses (e.g. \"dentists in denver\"):\n\nUse /v1/search to find businesses in a specific industry and location\nUse /v1/enrich or /v1/enrich-batch to get emails for businesses with websites\nOr use /v1/search-and-enrich to do both in one call\n\nDigital businesses (e.g. \"SaaS companies\", \"digital marketing agencies\"):\n\nUse /v1/search with \"mode\": \"digital\" to find online-only businesses\nEnrich with /v1/enrich or use /v1/search-and-enrich with \"mode\": \"digital\"\n\nCheck /v1/balance to monitor credit usage."
      }
    ],
    "body": "Easy Email Finder API\n\nUse this skill to find business leads and their email addresses. The Easy Email Finder API lets you search for local businesses (via Google Places) or digital/online-only businesses (SaaS, agencies, e-commerce, etc.), then enrich them with verified emails scraped from their websites.\n\nAuthentication\n\nAll requests require a Bearer token. The API key is available in the EEF_API_KEY environment variable.\n\nAuthorization: Bearer $EEF_API_KEY\n\n\nGet an API key at https://easyemailfinder.com/developer\n\nBase URL\nhttps://easyemailfinder.com/api/v1\n\nEndpoints\nSearch for businesses (free — no credits)\n# Local businesses (default)\ncurl -X POST https://easyemailfinder.com/api/v1/search \\\n  -H \"Authorization: Bearer $EEF_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"dentists in denver\", \"pageToken\": null}'\n\n# Digital/online-only businesses\ncurl -X POST https://easyemailfinder.com/api/v1/search \\\n  -H \"Authorization: Bearer $EEF_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"SaaS companies\", \"mode\": \"digital\"}'\n\n\nSet mode to \"local\" (default) for Google Places results or \"digital\" for online-only businesses. Returns business names, websites, and (for local mode) addresses, phone numbers, ratings, and Google Maps links. Use pageToken from the response to get the next page.\n\nEnrich a website with emails (1 credit per call)\ncurl -X POST https://easyemailfinder.com/api/v1/enrich \\\n  -H \"Authorization: Bearer $EEF_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"website\": \"https://example-business.com\"}'\n\n\nReturns: emails, techStack (wordpress/shopify/wix/squarespace/webflow/custom), socialLinks (facebook, instagram, linkedin, twitter, youtube, tiktok).\n\nBatch enrich (1 credit per website, max 20)\ncurl -X POST https://easyemailfinder.com/api/v1/enrich-batch \\\n  -H \"Authorization: Bearer $EEF_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"websites\": [\"https://site1.com\", \"https://site2.com\"]}'\n\nSearch + enrich in one call (1 credit per result)\n# Local businesses\ncurl -X POST https://easyemailfinder.com/api/v1/search-and-enrich \\\n  -H \"Authorization: Bearer $EEF_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"plumbers in austin\", \"limit\": 20}'\n\n# Digital businesses\ncurl -X POST https://easyemailfinder.com/api/v1/search-and-enrich \\\n  -H \"Authorization: Bearer $EEF_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"digital marketing agencies\", \"limit\": 20, \"mode\": \"digital\"}'\n\n\nCombines search and enrichment. limit defaults to 20, max 60. Supports mode: \"local\" (default) or \"digital\".\n\nCheck credit balance (free)\ncurl https://easyemailfinder.com/api/v1/balance \\\n  -H \"Authorization: Bearer $EEF_API_KEY\"\n\nView usage stats (free)\ncurl \"https://easyemailfinder.com/api/v1/usage?days=7\" \\\n  -H \"Authorization: Bearer $EEF_API_KEY\"\n\nResponse Format\n\nAll responses follow this envelope:\n\n{\n  \"data\": { ... },\n  \"meta\": {\n    \"requestId\": \"req_abc123\",\n    \"creditsUsed\": 1,\n    \"remainingCredits\": 94.75\n  }\n}\n\n\nErrors:\n\n{\n  \"error\": { \"code\": \"INSUFFICIENT_CREDITS\", \"message\": \"...\" },\n  \"meta\": { \"requestId\": \"req_abc123\" }\n}\n\nRate Limits\nStandard endpoints (search, balance, usage): 120 requests/minute\nEnrich endpoints: 30 requests/minute\nWhen rate limited, check the Retry-After response header\nCredit Costs\nEndpoint\tCost\n/v1/search\tFree\n/v1/enrich\t1 credit ($0.25)\n/v1/enrich-batch\t1 credit per website\n/v1/search-and-enrich\t1 credit per result\n/v1/balance\tFree\n/v1/usage\tFree\nTypical Workflow\n\nLocal businesses (e.g. \"dentists in denver\"):\n\nUse /v1/search to find businesses in a specific industry and location\nUse /v1/enrich or /v1/enrich-batch to get emails for businesses with websites\nOr use /v1/search-and-enrich to do both in one call\n\nDigital businesses (e.g. \"SaaS companies\", \"digital marketing agencies\"):\n\nUse /v1/search with \"mode\": \"digital\" to find online-only businesses\nEnrich with /v1/enrich or use /v1/search-and-enrich with \"mode\": \"digital\"\n\nCheck /v1/balance to monitor credit usage."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/faalbane/easy-email-finder",
    "publisherUrl": "https://clawhub.ai/faalbane/easy-email-finder",
    "owner": "faalbane",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/easy-email-finder",
    "downloadUrl": "https://openagent3.xyz/downloads/easy-email-finder",
    "agentUrl": "https://openagent3.xyz/skills/easy-email-finder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/easy-email-finder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/easy-email-finder/agent.md"
  }
}