← 返回 Skills 市场
faalbane

Openclaw Skill

作者 Frank Albanese · GitHub ↗ · v1.1.0
cross-platform ✓ 安全检测通过
402
总下载
0
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install easy-email-finder
功能描述
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...
使用说明 (SKILL.md)

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-After response 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"):

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

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

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

Check /v1/balance to monitor credit usage.

安全使用建议
This skill is internally coherent, but before installing: (1) confirm you trust the Easy Email Finder service and review its privacy/terms (the skill will transmit queries and website URLs to that external API); (2) keep your EEF_API_KEY secret and scoped/rotated as appropriate; (3) be aware enrich calls consume paid credits and are rate-limited; and (4) verify the skill publisher/source since registry metadata shows no homepage while SKILL.md references easyemailfinder.com.
功能分析
Type: OpenClaw Skill Name: easy-email-finder Version: 1.1.0 The skill bundle provides documentation for an AI agent to interact with the Easy Email Finder API (easyemailfinder.com) to search for businesses and retrieve contact information. It follows standard API integration patterns, requiring an environment variable (EEF_API_KEY) for authentication and providing clear instructions for search and enrichment endpoints. No evidence of malicious intent, data exfiltration, or prompt injection was found.
能力评估
Purpose & Capability
Name/description promise (search/enrich businesses with emails, tech stack, social links) aligns with the single required credential (EEF_API_KEY) and the API endpoints documented in SKILL.md. There are no extra binaries, config paths, or unrelated credentials requested.
Instruction Scope
SKILL.md is explicit about endpoints, request formats, authentication, rate limits, and credit costs. It only instructs the agent to call https://easyemailfinder.com API endpoints and to read the EEF_API_KEY env var; it does not instruct the agent to read other files, environment variables, or system paths.
Install Mechanism
No install spec and no code files — instruction-only. This minimizes on-disk risk; nothing is downloaded or executed by the skill itself.
Credentials
Only one environment variable is required (EEF_API_KEY) and it is the documented bearer token for the API. The credential request is proportionate to the skill's stated purpose and is declared as the primary credential.
Persistence & Privilege
always is false (default) and the skill makes no claims to modify agent/system settings. Autonomous invocation is allowed (platform default) but not combined with other privilege-escalating factors.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install easy-email-finder
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /easy-email-finder 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
Updated rate limits: 120 req/min standard, 30 req/min enrich
v1.0.0
Initial release of Easy Email Finder skill. - Search for businesses by industry and location via Google Places. - Enrich business websites with verified emails, tech stack detection, and social media links. - Batch enrich up to 20 websites in one call. - Combined search and enrich endpoint for streamlined workflow. - Check credit balance and usage stats via dedicated endpoints. - Supports API key authentication and follows a consistent response format.
元数据
Slug easy-email-finder
版本 1.1.0
许可证
累计安装 1
当前安装数 1
历史版本数 2
常见问题

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。

💬 留言讨论