4.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
| name | zoominfo |
| description | Access B2B contact and company data via ZoomInfo API. Enrich leads and find prospects. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/zoominfo |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/zoominfo |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
269 BSKILL.md
1.3 KBSKILL.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"}'
Enrich Company
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"}'
Links
- Dashboard: https://app.zoominfo.com
- Docs: https://api-docs.zoominfo.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.
