Simple Rapleaf API client for node.js. To learn more about Rapleaf API check the official documentation.
$ npm install node-rapleaf
var RapLeafApi = require('node-rapleaf');
var client = new RapLeafApi('<your key goes here>');
client.query_by_email('<some email>', function(json_data) {
console.log(json_data);
});