skills$openclaw/zoominfo
mrgoodb4.7k

by mrgoodb

zoominfo – OpenClaw Skill

zoominfo is an OpenClaw Skills integration for security workflows. Access B2B contact and company data via ZoomInfo API. Enrich leads and find prospects.

4.7k stars5.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026security

Skill Snapshot

namezoominfo
descriptionAccess B2B contact and company data via ZoomInfo API. Enrich leads and find prospects. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/zoominfo
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/zoominfo
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains zoominfo in the OpenClaw Skills directory.

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

name: zoominfo description: Access B2B contact and company data via ZoomInfo API. Enrich leads and find prospects. metadata: {"clawdbot":{"emoji":"🔍","requires":{"env":["ZOOMINFO_USERNAME","ZOOMINFO_PASSWORD"]}}}

ZoomInfo

B2B intelligence platform.

Environment

export ZOOMINFO_USERNAME="xxxxxxxxxx"
export ZOOMINFO_PASSWORD="xxxxxxxxxx"

Get Access Token

curl -X POST "https://api.zoominfo.com/authenticate" \
  -H "Content-Type: application/json" \
  -d '{"username": "'$ZOOMINFO_USERNAME'", "password": "'$ZOOMINFO_PASSWORD'"}'

Search Companies

curl -X POST "https://api.zoominfo.com/search/company" \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"companyName": "Acme Inc", "rpp": 10}'

Search Contacts

curl -X POST "https://api.zoominfo.com/search/contact" \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"companyId": "123456", "jobTitle": "CEO"}'
curl -X POST "https://api.zoominfo.com/enrich/company" \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"companyName": "Acme Inc", "companyWebsite": "acme.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 zoominfo?

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