skills$openclaw/apollo
jhumanj2.9k

by jhumanj

apollo – OpenClaw Skill

apollo is an OpenClaw Skills integration for data analytics workflows. Interact with Apollo.io REST API (people/org enrichment, search, lists).

2.9k stars216 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameapollo
descriptionInteract with Apollo.io REST API (people/org enrichment, search, lists). OpenClaw Skills integration.
ownerjhumanj
repositoryjhumanj/apollo
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @jhumanj/apollo
last updatedFeb 7, 2026

Maintainer

jhumanj

jhumanj

Maintains apollo in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
scripts
apollo-config.sh
681 B
apollo-enrich-website.sh
435 B
apollo-get.sh
565 B
apollo-orgs-bulk.sh
484 B
apollo-people-search.sh
680 B
apollo-post.sh
619 B
_meta.json
265 B
SKILL.md
1.3 KB
SKILL.md

name: apollo description: Interact with Apollo.io REST API (people/org enrichment, search, lists). metadata: {"clawdbot":{"emoji":"🛰️","os":["darwin","linux"]}}

Apollo.io

Interact with Apollo.io via REST API.

Config

Create config/apollo.env (example at config/apollo.env.example):

  • APOLLO_BASE_URL (usually https://api.apollo.io)
  • APOLLO_API_KEY

Scripts load this automatically.

Commands

Low-level helpers

  • GET: skills/apollo/scripts/apollo-get.sh "/api/v1/users" (endpoint availability may vary)
  • 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 X-Api-Key header (these scripts send it automatically).
  • Some endpoints require a master API key and a paid plan (Apollo returns 403 in that case).
  • Rate limiting is common (e.g. 600/hour on many endpoints); handle 429 responses.
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

Configuration

Create `config/apollo.env` (example at `config/apollo.env.example`): - `APOLLO_BASE_URL` (usually `https://api.apollo.io`) - `APOLLO_API_KEY` Scripts load this automatically.

FAQ

How do I install apollo?

Run openclaw add @jhumanj/apollo in your terminal. This installs apollo into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/jhumanj/apollo. Review commits and README documentation before installing.