@robinpath/clearbit
v0.1.1
Published
> Clearbit module for RobinPath.
Keywords
Readme
@robinpath/clearbit
Clearbit module for RobinPath.
Why use this module?
The clearbit module lets you:
- enrichPerson
- enrichCompany
- findPerson
- findCompany
- revealVisitor
All functions are callable directly from RobinPath scripts with a simple, consistent API.
Installation
npm install @robinpath/clearbitQuick Start
1. Set up credentials
clearbit.setCredentials "your-credentials"2. enrichPerson
clearbit.enrichPersonAvailable Functions
| Function | Description |
|----------|-------------|
| clearbit.setCredentials | Configure clearbit credentials. |
| clearbit.enrichPerson | enrichPerson |
| clearbit.enrichCompany | enrichCompany |
| clearbit.findPerson | findPerson |
| clearbit.findCompany | findCompany |
| clearbit.revealVisitor | revealVisitor |
| clearbit.lookupEmail | lookupEmail |
| clearbit.lookupDomain | lookupDomain |
| clearbit.autocompleteCompany | autocompleteCompany |
| clearbit.getPersonFlag | getPersonFlag |
| clearbit.getCompanyFlag | getCompanyFlag |
| clearbit.prospectorSearch | prospectorSearch |
| clearbit.nameToEmail | nameToEmail |
| clearbit.listTags | listTags |
| clearbit.combined | combined |
Examples
enrichPerson
clearbit.enrichPersonenrichCompany
clearbit.enrichCompanyfindPerson
clearbit.findPersonIntegration with RobinPath
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/clearbit";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
clearbit.setCredentials "your-credentials"
clearbit.enrichPerson
`);Full API Reference
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
Related Modules
@robinpath/json— JSON module for complementary functionality
License
MIT
