hunter-io
Hunter.io API for finding and verifying corporate email addresses by domain. Use when: finding contact emails for a target domain, discovering email naming patterns, verifying whether an email address is deliverable, or bulk-searching emails for lead generation or OSINT.
What this skill does
# Hunter.io
## Overview
Hunter.io is a professional email discovery service that indexes publicly available email addresses from websites, LinkedIn, corporate directories, and other sources. Its API provides domain-level email search, individual email lookup, email pattern detection, and deliverability verification. In OSINT contexts, Hunter is invaluable for building contact lists during pre-engagement recon and identifying employee email formats.
**Requires:** Hunter.io API key (free tier: 25 searches/month; paid plans for bulk use).
## Instructions
### Step 1: Setup
```bash
pip install requests
```
```python
import requests
import time
import json
from typing import Optional
HUNTER_API_KEY = "YOUR_HUNTER_IO_API_KEY"
BASE_URL = "https://api.hunter.io/v2"
def hunter_request(endpoint, params):
"""Make an authenticated request to the Hunter.io API."""
params["api_key"] = HUNTER_API_KEY
response = requests.get(f"{BASE_URL}/{endpoint}", params=params)
response.raise_for_status()
return response.json()
# Check your account status and remaining credits
def check_account():
data = hunter_request("account", {})
account = data["data"]
print(f"Plan: {account['plan_name']}")
print(f"Searches used: {account['requests']['searches']['used']} / {account['requests']['searches']['available']}")
print(f"Verifications used: {account['requests']['verifications']['used']} / {account['requests']['verifications']['available']}")
check_account()
```
### Step 2: Domain search — find all emails for a domain
```python
def domain_search(domain, limit=10, offset=0, seniority=None, department=None):
"""
Search for all email addresses associated with a domain.
seniority: junior, senior, executive
department: it, finance, management, sales, legal, communication, marketing, hr, engineering
"""
params = {
"domain": domain,
"limit": limit,
"offset": offset,
}
if seniority:
params["seniority"] = seniority
if department:
params["department"] = department
data = hunter_request("domain-search", params)
result = data["data"]
print(f"\n=== Domain Search: {domain} ===")
print(f"Total emails indexed: {result['meta']['total']}")
print(f"Email pattern: {result.get('pattern', 'Unknown')}")
print(f"Organization: {result.get('organization', 'N/A')}")
print(f"Domain type: {result.get('type', 'N/A')}")
emails = result.get("emails", [])
print(f"\nFound {len(emails)} emails (showing up to {limit}):")
for email in emails:
confidence = email.get("confidence", 0)
name = f"{email.get('first_name', '')} {email.get('last_name', '')}".strip()
position = email.get("position", "")
dept = email.get("department", "")
sources = len(email.get("sources", []))
print(f" {email['value']:<40} {confidence}% confidence | {name} | {position} | {dept} | {sources} sources")
return result
# Basic domain search
result = domain_search("example.com", limit=20)
# Filter by department
result = domain_search("example.com", department="engineering", limit=10)
# Filter by seniority
result = domain_search("example.com", seniority="executive", limit=5)
```
### Step 3: Paginate through all emails
```python
def get_all_emails(domain, delay_seconds=1.0):
"""Retrieve all emails for a domain, handling pagination."""
all_emails = []
offset = 0
limit = 100 # Max per request
# Get total count first
first_page = hunter_request("domain-search", {"domain": domain, "limit": 1, "offset": 0})
total = first_page["data"]["meta"]["total"]
pattern = first_page["data"].get("pattern", "unknown")
print(f"Fetching {total} emails for {domain} (pattern: {pattern})")
while offset < total:
page_data = hunter_request("domain-search", {
"domain": domain,
"limit": limit,
"offset": offset,
})
emails = page_data["data"].get("emails", [])
all_emails.extend(emails)
offset += limit
print(f" Retrieved {len(all_emails)}/{total}")
if len(emails) < limit:
break
time.sleep(delay_seconds) # Respect rate limits
print(f"Total collected: {len(all_emails)}")
return all_emails, pattern
emails, pattern = get_all_emails("example.com")
# Save to JSON
with open("emails_example_com.json", "w") as f:
json.dump({"pattern": pattern, "emails": emails}, f, indent=2)
```
### Step 4: Email finder — generate a specific person's email
```python
def find_email(first_name, last_name, domain):
"""
Find the email address for a specific person at a company.
Returns the most likely email and confidence score.
"""
params = {
"first_name": first_name,
"last_name": last_name,
"domain": domain,
}
data = hunter_request("email-finder", params)
result = data["data"]
email = result.get("email")
confidence = result.get("score", 0)
sources = result.get("sources", [])
if email:
print(f"Found: {email} (confidence: {confidence}%)")
print(f"Sources: {len(sources)} public references")
for source in sources[:3]:
print(f" - {source.get('uri', 'N/A')}")
else:
print(f"No email found for {first_name} {last_name} @ {domain}")
print(f"Pattern: {result.get('pattern', 'unknown')}")
return result
find_email("John", "Smith", "example.com")
find_email("Jane", "Doe", "example.com")
```
### Step 5: Email verifier — check if an email is deliverable
```python
def verify_email(email):
"""
Verify whether an email address is deliverable.
Result statuses:
- valid: email exists and is deliverable
- invalid: email does not exist
- accept_all: server accepts all emails (can't verify)
- webmail: free email provider (Gmail, Yahoo, etc.)
- disposable: temporary/disposable email service
- unknown: could not be determined
"""
data = hunter_request("email-verifier", {"email": email})
result = data["data"]
status = result.get("status")
score = result.get("score", 0)
mx_records = result.get("mx_records", False)
smtp_check = result.get("smtp_server", False)
disposable = result.get("disposable", False)
print(f"\nVerification: {email}")
print(f" Status: {status}")
print(f" Score: {score}/100")
print(f" MX Records: {'✓' if mx_records else '✗'}")
print(f" SMTP Check: {'✓' if smtp_check else '✗'}")
print(f" Disposable: {'⚠ Yes' if disposable else 'No'}")
return result
verify_email("[email protected]")
verify_email("[email protected]") # Disposable email example
```
### Step 6: Bulk operations and reporting
```python
def bulk_verify_emails(email_list, output_file="verification_results.json", delay=0.5):
"""Verify multiple email addresses and save results."""
results = []
for i, email in enumerate(email_list):
print(f"[{i+1}/{len(email_list)}] Verifying {email}...")
result = verify_email(email)
results.append({"email": email, **result})
time.sleep(delay) # Avoid hitting rate limits
# Summary
statuses = {}
for r in results:
s = r.get("status", "unknown")
statuses[s] = statuses.get(s, 0) + 1
print(f"\nVerification Summary:")
for status, count in sorted(statuses.items(), key=lambda x: -x[1]):
print(f" {status}: {count}")
with open(output_file, "w") as f:
json.dump(results, f, indent=2)
print(f"Saved to {output_file}")
return results
def infer_email_pattern(pattern_str, first_name, last_name, domain):
"""Generate an email from the Hunter pattern for a person."""
f = first_name.lower()
l = last_name.lower()
fi = f[0] # First initial
li = l[0] # Last initial
replacements = {
"{first}": f,
"{last}": l,
"{f}": fi,
"{l}":Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.