Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 378 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 378 Bytes

Node.js wrapper for CrunchBase API V2

Examples

var crunchbase = require('crunchbase2');

// Init the object with your API key
crunchbase.init(apikey);

// Lookup all organizations with keyword "airbnb"
crunchbase.organizations( { query: "airbnb" } , function(error, results) {
 if (!error) {
    console.log(results) // Print the search results
  }
});