Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

zoominfo

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zoominfo

Node.js API wrapper for ZoomInfo.com (wip)

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

zoominfo

Node.js API wrapper for ZoomInfo (WORK IN PROGRESS)

npm install zoominfo

Valid input parameters for each type of query are listed in input_parameters.json. More details in ZoomInfo API documentation. Possible parameter options and codes are listed here.

To Do

  • Remove unessessary dependencies
    • underscore
    • request
  • Better error handling
  • Better input parameter / options handling

Usage

var zoominfo = require('zoominfo')(partner_code, password);

var query = {
  personTitle: 'Vice President',
  IndustryClassification: '131594',
  State: 'California'
};

zoominfo.person.search(query, function (err, data, res) {
  if (err) {
    console.log('error:')
    console.log(err);
  }
  else {
    console.log(data);
  }
  done();
});

zoominfo.person.detail(<query>, <callback>);
zoominfo.person.match(<query>, <callback>);

zoominfo.company.search(<query>, <callback>);
zoominfo.company.detail(<query>, <callback>);
zoominfo.company.match(<query>, <callback>);

Tests

Modify test/test.js with your ZoomInfo partner code and password

npm install
npm test

Keywords

FAQs

Package last updated on 14 Mar 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc