← ClaudeAtlas

find-email-by-namelisted

Find someone's email address given their name and company
gooseworks-ai/goose-skills · ★ 727 · AI & Automation · score 82
Install: claude install-skill gooseworks-ai/goose-skills
# Find Email by Name ## Setup Read your credentials from ~/.gooseworks/credentials.json: ```bash export GOOSEWORKS_API_KEY=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json'))['api_key'])") export GOOSEWORKS_API_BASE=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json')).get('api_base','https://api.gooseworks.ai'))") ``` If ~/.gooseworks/credentials.json does not exist, tell the user to run: `npx gooseworks login` All endpoints use Bearer auth: `-H "Authorization: Bearer $GOOSEWORKS_API_KEY"` Find a person's email address when you know their name and company/domain. Essential for sales outreach, recruiting, and professional networking. ## When to Use - User needs to contact someone at a company - User asks "what's [person]'s email at [company]?" - User wants to reach out to a specific person - Sales prospecting or lead generation - Recruiting outreach ## How It Works Uses Hunter or Tomba APIs to find the most likely email address for a person based on their name and company domain. ## Usage ### Find Email with Hunter ```bash curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \ -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \ -H "Content-Type: application/json" \ -d '{"api":"hunter","path":"/v2/email-finder","query":{"domain":"stripe.com","first_name":"Patrick","last_name":"Collison"}}' ``` ### Find Email with Tomba ```bash curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run