apollo-core-workflow-a

Featured

Implement Apollo.io lead search and enrichment workflow. Use when building lead generation features, searching for contacts, or enriching prospect data from Apollo. Trigger with phrases like "apollo lead search", "search apollo contacts", "find leads in apollo", "apollo people search", "enrich contacts apollo".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Apollo Core Workflow A: Lead Search & Enrichment ## Overview Build the core Apollo.io prospecting pipeline: search for people and organizations, then enrich the best leads. Key distinction — **search is free** (no credits), **enrichment costs credits**. This skill uses the correct endpoints and `x-api-key` header authentication. ## Prerequisites - Completed `apollo-install-auth` setup - Valid Apollo API key with search + enrichment permissions - Understanding of your Ideal Customer Profile (ICP) ## Instructions ### Step 1: Search for People (Free — No Credits) The People API Search endpoint (`POST /mixed_people/api_search`) searches Apollo's 275M+ database. It does **not** return emails or phone numbers — use enrichment for that. ```typescript // src/workflows/lead-search.ts import axios from 'axios'; const client = axios.create({ baseURL: 'https://api.apollo.io/api/v1', headers: { 'Content-Type': 'application/json', 'x-api-key': process.env.APOLLO_API_KEY! }, }); interface PersonSearchParams { domains: string[]; titles?: string[]; seniorities?: string[]; // "c_suite", "vp", "director", "manager", "senior" locations?: string[]; // "United States", "San Francisco, California" page?: number; perPage?: number; } export async function searchPeople(params: PersonSearchParams) { const { data } = await client.post('/mixed_people/api_search', { q_organization_domains_list: params.domains, person_titles: params.titles, person_senioritie...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category