skills$openclaw/apollo-io
mrgoodb7.2k

by mrgoodb

apollo-io – OpenClaw Skill

apollo-io is an OpenClaw Skills integration for writing workflows. Access sales intelligence and engagement via Apollo.io API. Find leads and manage sequences.

7.2k stars4.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

nameapollo-io
descriptionAccess sales intelligence and engagement via Apollo.io API. Find leads and manage sequences. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/apollo-io
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/apollo-io
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains apollo-io in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
271 B
SKILL.md
1.3 KB
SKILL.md

name: apollo-io description: Access sales intelligence and engagement via Apollo.io API. Find leads and manage sequences. metadata: {"clawdbot":{"emoji":"🚀","requires":{"env":["APOLLO_API_KEY"]}}}

Apollo.io

Sales intelligence platform.

Environment

export APOLLO_API_KEY="xxxxxxxxxx"

Search People

curl -X POST "https://api.apollo.io/v1/mixed_people/search" \
  -H "Content-Type: application/json" \
  -d '{"api_key": "'$APOLLO_API_KEY'", "person_titles": ["CEO", "CTO"], "organization_num_employees_ranges": ["1,50"]}'

Search Organizations

curl -X POST "https://api.apollo.io/v1/mixed_companies/search" \
  -H "Content-Type: application/json" \
  -d '{"api_key": "'$APOLLO_API_KEY'", "organization_num_employees_ranges": ["1,50"]}'

Enrich Person

curl -X POST "https://api.apollo.io/v1/people/match" \
  -H "Content-Type: application/json" \
  -d '{"api_key": "'$APOLLO_API_KEY'", "email": "ceo@example.com"}'
curl -X POST "https://api.apollo.io/v1/contacts" \
  -H "Content-Type: application/json" \
  -d '{"api_key": "'$APOLLO_API_KEY'", "first_name": "John", "last_name": "Doe", "email": "john@example.com"}'
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:

FAQ

How do I install apollo-io?

Run openclaw add @mrgoodb/apollo-io in your terminal. This installs apollo-io 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/mrgoodb/apollo-io. Review commits and README documentation before installing.