Agent skill
apollo-outreach
Research and enrich B2B leads using the Apollo.io API.
Filed under Prospecting and list building and Outbound email.
From OpenClaudia/openclaudia-skills · 61 skills · 664 · pushed 2026-08-25
What it does when it runs
Research and enrich B2B leads using the Apollo.io API. Use when the user says "find leads", "prospect research", "company enrichment", "find decision makers", "B2B leads", "lead research", "enrich contacts", "find VP of marketing at", or asks about finding people at specific companies or in specific roles.
Read from the skill and the 0 files bundled beside it. A skill’s own description is written to be selected by an agent, so it describes the job and not the dependencies.
- Keys and connectors you must supply
- APOLLO_API_KEY
- Hosts it reaches
- api.apollo.io
- app.apollo.io
- Tool permissions it declares
- No
allowed-toolsin the frontmatter. It does act, so it runs under whatever permissions your session already grants. - Actions present in the files
- shell
Install it
View source on GitHub ↗git clone --depth 1 --filter=blob:none --sparse https://github.com/OpenClaudia/openclaudia-skills.git /tmp/openclaudia-skills git -C /tmp/openclaudia-skills sparse-checkout set "skills/apollo-outreach" mkdir -p ~/.claude/skills/apollo-outreach cp -R "/tmp/openclaudia-skills/skills/apollo-outreach/." ~/.claude/skills/apollo-outreach/
Picked up without a restart. A project skill of the same name is shadowed by your personal one. For one repository only, swap ~/.claude/skills for .claude/skills. Claude Code docs ↗
The folder is the same in every client that implements the format — 46 of them — so if yours is not above, only the destination changes.
Before you install: this skill will not complete its job on a bare agent. It needs APOLLO_API_KEY, which you have to obtain separately.
The skill
Source on GitHub ↗Reproduced in full from OpenClaudia/openclaudia-skills/blob/221b37d7ab95c14d5343c7b24fd9f9367a3fb400/skills/apollo-outreach/SKILL.md, which is licensed MIT (repository). 682 words, 21 headings.
Apollo.io B2B Lead Research Skill
You are a B2B sales intelligence expert. Use the Apollo.io API to find prospects, enrich company data, and build targeted lead lists for outreach campaigns.
Prerequisites
This skill requires APOLLO_API_KEY. Check for it in environment variables or ~/.claude/.env.global. If not found, inform the user:
This skill requires an Apollo.io API key. Set it via:
export APOLLO_API_KEY=your_key_here
Or add it to ~/.claude/.env.global
Get your API key at: https://app.apollo.io/#/settings/integrations/api
API Reference
Base URL: https://api.apollo.io
Auth: X-Api-Key header or api_key query parameter.
Rate limit: ~600 requests/hour (varies by plan).
People Search
Find prospects by role, company, location, and more:
curl -s -X POST "https://api.apollo.io/api/v1/mixed_people/search" \
-H "Content-Type: application/json" \
-H "X-Api-Key: ${APOLLO_API_KEY}" \
-d '{
"q_keywords": "vp marketing",
"person_titles": ["VP Marketing", "Head of Marketing", "CMO"],
"organization_num_employees_ranges": ["51,200"],
"person_locations": ["United States"],
"page": 1,
"per_page": 10
}'
Useful filters:
q_keywords- Keyword search across name, title, companyperson_titles- Array of job titlesperson_locations- Array of locationsorganization_industry_tag_ids- Industry filterorganization_num_employees_ranges- Employee count (e.g., "1,10", "11,50", "51,200", "201,1000", "1001,5000")q_organization_domains- Search within specific company domains
Organization Enrichment
Get detailed company info from a domain:
curl -s -X POST "https://api.apollo.io/api/v1/organizations/enrich" \
-H "Content-Type: application/json" \
-H "X-Api-Key: ${APOLLO_API_KEY}" \
-d '{"domain": "example.com"}'
Returns: company name, industry, employee count, revenue, tech stack, social links, description, founded year, and more.
Bulk Organization Lookup
curl -s -X POST "https://api.apollo.io/api/v1/organizations/bulk_enrich" \
-H "Content-Type: application/json" \
-H "X-Api-Key: ${APOLLO_API_KEY}" \
-d '{"domains": ["example.com", "company2.com", "company3.com"]}'
People Enrichment
Enrich a contact by email:
curl -s -X POST "https://api.apollo.io/api/v1/people/match" \
-H "Content-Type: application/json" \
-H "X-Api-Key: ${APOLLO_API_KEY}" \
-d '{
"email": "[email protected]",
"reveal_personal_emails": false,
"reveal_phone_number": false
}'
Lead Research Process
Step 1: Define ICP (Ideal Customer Profile)
Ask or infer:
- Target titles: What roles are you selling to?
- Company size: Employee count range
- Industry: Specific verticals
- Geography: Target regions/countries
- Tech stack: Specific technologies they use
- Revenue range: Company revenue target
Step 2: Build Search Query
Translate ICP into Apollo search filters. Run multiple searches with variations:
- Different title variations (VP Marketing = VP of Marketing = Vice President, Marketing)
- Adjacent roles (CMO, Director of Marketing, Head of Growth)
- Company size tiers separately
Step 3: Enrich Results
For each prospect found:
- Note their current title, company, and location
- Enrich their company domain for additional context
- Look for mutual connections or shared background
Step 4: Qualify & Prioritize
Score leads on:
| Factor | Weight | Criteria |
|---|---|---|
| Title match | 30% | Exact title vs. adjacent role |
| Company size | 25% | Sweet spot for your product |
| Industry fit | 20% | Core vs. adjacent industry |
| Recency | 15% | How recently they started the role |
| Signals | 10% | Hiring, funding, tech stack changes |
Step 5: Output Lead List
Format results as:
# Lead Research Report: {ICP Description}
**Date:** {date}
**Prospects Found:** {count}
**Companies Represented:** {count}
## Top Prospects
| # | Name | Title | Company | Employees | Industry | Score |
|---|------|-------|---------|-----------|----------|-------|
| 1 | {name} | {title} | {company} | {size} | {industry} | {score}/100 |
## Company Insights
### {Company Name}
- **Domain:** {domain}
- **Industry:** {industry}
- **Employees:** {count}
- **Revenue:** {range}
- **Tech Stack:** {technologies}
- **Key Contacts Found:** {count}
## Outreach Recommendations
### Personalization Angles
1. {Specific angle based on company data}
2. {Specific angle based on role/industry}
### Suggested Sequence
- Email 1: {angle}
- Email 2: {follow-up angle}
- LinkedIn: {connection request approach}
Important Notes
- Apollo rate limits are strict (~600/hour). Batch requests and cache results.
- Some endpoints require a paid plan. Handle 403 responses gracefully.
- Never store or expose personal email addresses or phone numbers in outputs unless explicitly requested.
- Respect opt-out lists and GDPR/CAN-SPAM compliance.
- Use enrichment data for personalization, not for unsolicited spam.
Other skills for the same job
Different authors, same problem. Matched on the words in the skill name, across every library in the catalogue except this one.
- sales-outreach by zubair-trabzada · 1,079
- cold-outreach-sequence by BrianRWagner · 403
- cold-outreach by shawnpang · 308
- earned-media-outreach by shawnpang · 308
- partnership-outreach by shawnpang · 308
- cold-email-outreach by thatrebeccarae · 119
- networking-outreach by manojbajaj95 · 92
- ph-community-outreach by manojbajaj95 · 92
Need help setting it up?
This page tells you what apollo-outreach does and what it needs. Cheetah builds the agent setup it runs inside: data, CRM, sequencing and the guardrails.
Book a call →The directory stays free. There is nothing gated behind this.