← 返回
沟通协作 Key 中文

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...
搜索本地或数字业务,并通过验证邮箱、技术栈检测和社交媒体链接丰富企业信息。
faalbane
沟通协作 clawhub v1.1.0 2 版本 100000 Key: 需要
★ 0
Stars
📥 639
下载
💾 12
安装
2
版本
#latest

概述

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

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

  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.

版本历史

共 2 个版本

  • v1.1.0 当前
    2026-03-29 20:21 安全 安全
  • v1.0.0
    2026-03-07 01:58

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

communication-collaboration

imap-smtp-email

gzlicanyi
使用IMAP/SMTP读取和发送邮件;检查新/未读邮件、获取内容、搜索邮箱、标记已读/未读、发送带附件的邮件。支持...
★ 114 📥 52,421
communication-collaboration

Gmail

byungkyu
Gmail API 集成,托管 OAuth,支持读取、发送和管理邮件、线程、标签及草稿,适用于需要与 Gmail 交互的场景。
★ 72 📥 37,731
communication-collaboration

Slack

steipete
当需要通过 slack 工具从 Clawdbot 控制 Slack 时使用,包括在频道或私信中回复消息或置顶/取消置顶项目。
★ 157 📥 47,680