# Send Easy Email Finder to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/easy-email-finder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=easy-email-finder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Easy Email Finder API

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.

### Authentication

All requests require a Bearer token. The API key is available in the EEF_API_KEY environment variable.

Authorization: Bearer $EEF_API_KEY

Get an API key at https://easyemailfinder.com/developer

### Base URL

https://easyemailfinder.com/api/v1

### Search for businesses (free — no credits)

# Local businesses (default)
curl -X POST https://easyemailfinder.com/api/v1/search \\
  -H "Authorization: Bearer $EEF_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"query": "dentists in denver", "pageToken": null}'

# Digital/online-only businesses
curl -X POST https://easyemailfinder.com/api/v1/search \\
  -H "Authorization: Bearer $EEF_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"query": "SaaS companies", "mode": "digital"}'

Set 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.

### Enrich a website with emails (1 credit per call)

curl -X POST https://easyemailfinder.com/api/v1/enrich \\
  -H "Authorization: Bearer $EEF_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"website": "https://example-business.com"}'

Returns: emails, techStack (wordpress/shopify/wix/squarespace/webflow/custom), socialLinks (facebook, instagram, linkedin, twitter, youtube, tiktok).

### Batch enrich (1 credit per website, max 20)

curl -X POST https://easyemailfinder.com/api/v1/enrich-batch \\
  -H "Authorization: Bearer $EEF_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"websites": ["https://site1.com", "https://site2.com"]}'

### Search + enrich in one call (1 credit per result)

# Local businesses
curl -X POST https://easyemailfinder.com/api/v1/search-and-enrich \\
  -H "Authorization: Bearer $EEF_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"query": "plumbers in austin", "limit": 20}'

# Digital businesses
curl -X POST https://easyemailfinder.com/api/v1/search-and-enrich \\
  -H "Authorization: Bearer $EEF_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"query": "digital marketing agencies", "limit": 20, "mode": "digital"}'

Combines search and enrichment. limit defaults to 20, max 60. Supports mode: "local" (default) or "digital".

### Check credit balance (free)

curl https://easyemailfinder.com/api/v1/balance \\
  -H "Authorization: Bearer $EEF_API_KEY"

### View usage stats (free)

curl "https://easyemailfinder.com/api/v1/usage?days=7" \\
  -H "Authorization: Bearer $EEF_API_KEY"

### Response Format

All responses follow this envelope:

{
  "data": { ... },
  "meta": {
    "requestId": "req_abc123",
    "creditsUsed": 1,
    "remainingCredits": 94.75
  }
}

Errors:

{
  "error": { "code": "INSUFFICIENT_CREDITS", "message": "..." },
  "meta": { "requestId": "req_abc123" }
}

### Rate Limits

Standard endpoints (search, balance, usage): 120 requests/minute
Enrich endpoints: 30 requests/minute
When rate limited, check the Retry-After response header

### Credit Costs

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

### Typical Workflow

Local businesses (e.g. "dentists in denver"):

Use /v1/search to find businesses in a specific industry and location
Use /v1/enrich or /v1/enrich-batch to get emails for businesses with websites
Or use /v1/search-and-enrich to do both in one call

Digital businesses (e.g. "SaaS companies", "digital marketing agencies"):

Use /v1/search with "mode": "digital" to find online-only businesses
Enrich with /v1/enrich or use /v1/search-and-enrich with "mode": "digital"

Check /v1/balance to monitor credit usage.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: faalbane
- Version: 1.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/easy-email-finder)
- [Send to Agent page](https://openagent3.xyz/skills/easy-email-finder/agent)
- [JSON manifest](https://openagent3.xyz/skills/easy-email-finder/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/easy-email-finder/agent.md)
- [Download page](https://openagent3.xyz/downloads/easy-email-finder)