← Back to Skills Marketplace
faalbane

Openclaw Skill

by Frank Albanese · GitHub ↗ · v1.1.0
cross-platform ✓ Security Clean
402
Downloads
0
Stars
1
Active Installs
2
Versions
Install in OpenClaw
/install easy-email-finder
Description
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...
README (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.

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install easy-email-finder
  3. After installation, invoke the skill by name or use /easy-email-finder
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug easy-email-finder
Version 1.1.0
License
All-time Installs 1
Active Installs 1
Total Versions 2
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 402 downloads so far.

How do I install Openclaw Skill?

Run "/install easy-email-finder" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Openclaw Skill free?

Yes, Openclaw Skill is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Openclaw Skill support?

Openclaw Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Openclaw Skill?

It is built and maintained by Frank Albanese (@faalbane); the current version is v1.1.0.

💬 Comments