Openclaw Skill
/install easy-email-finder
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
Endpoints
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-Afterresponse header
Credit Costs
| Endpoint | Cost |
|---|---|
| /v1/search | Free |
| /v1/enrich | 1 credit ($0.25) |
| /v1/enrich-batch | 1 credit per website |
| /v1/search-and-enrich | 1 credit per result |
| /v1/balance | Free |
| /v1/usage | Free |
Typical Workflow
Local businesses (e.g. "dentists in denver"):
- Use
/v1/searchto find businesses in a specific industry and location - Use
/v1/enrichor/v1/enrich-batchto get emails for businesses with websites - Or use
/v1/search-and-enrichto do both in one call
Digital businesses (e.g. "SaaS companies", "digital marketing agencies"):
- Use
/v1/searchwith"mode": "digital"to find online-only businesses - Enrich with
/v1/enrichor use/v1/search-and-enrichwith"mode": "digital"
Check /v1/balance to monitor credit usage.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install easy-email-finder - 安装完成后,直接呼叫该 Skill 的名称或使用
/easy-email-finder触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Openclaw Skill 是什么?
Search for local or digital businesses and enrich them with verified email addresses, tech stack detection, and social media links using the Easy Email Finde... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 402 次。
如何安装 Openclaw Skill?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install easy-email-finder」即可一键安装,无需额外配置。
Openclaw Skill 是免费的吗?
是的,Openclaw Skill 完全免费(开源免费),可自由下载、安装和使用。
Openclaw Skill 支持哪些平台?
Openclaw Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Openclaw Skill?
由 Frank Albanese(@faalbane)开发并维护,当前版本 v1.1.0。