Awesome-openclaw-skills apollo
Interact with Apollo.io REST API (people/org enrichment, search, lists).
install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/apollo" ~/.claude/skills/sundial-org-awesome-openclaw-skills-apollo && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/apollo" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-apollo && rm -rf "$T"
manifest:
skills/apollo/SKILL.mdsource content
Apollo.io
Interact with Apollo.io via REST API.
Config
Create
config/apollo.env (example at config/apollo.env.example):
(usuallyAPOLLO_BASE_URL
)https://api.apollo.ioAPOLLO_API_KEY
Scripts load this automatically.
Commands
Low-level helpers
- GET:
(endpoint availability may vary)skills/apollo/scripts/apollo-get.sh "/api/v1/users" - People search (new):
skills/apollo/scripts/apollo-people-search.sh "vp marketing" 1 5 - POST (generic):
skills/apollo/scripts/apollo-post.sh "/api/v1/mixed_people/api_search" '{"q_keywords":"vp marketing","page":1,"per_page":5}'
Enrichment (common)
- Enrich website/org by domain:
skills/apollo/scripts/apollo-enrich-website.sh "apollo.io" - Get complete org info (bulk):
skills/apollo/scripts/apollo-orgs-bulk.sh "6136480939c707388501e6b9"
Notes
- Apollo authenticates via
header (these scripts send it automatically).X-Api-Key - Some endpoints require a master API key and a paid plan (Apollo returns
in that case).403 - Rate limiting is common (e.g. 600/hour on many endpoints); handle
responses.429