lending-api

v1.0.0
Lending club api
lending club node api

lending-club-api

Unofficial Lending Club API

How to use it:

Require lending-api

var LendingClub = require('lending-api');

var lendingClub = new LendingClub({
    key: config.key,
    investorId: config.investorId
});

Make a call to the API using a chosen method.

lendingClub.loans.list(function(err, data){
    if(err) return done(err);
    console.log(data);
});

The following methods have been implemented and work against the Lending Club api.

  • lendingClub.loans.list
  • lendingClub.account.summary
  • lendingClub.account.availableCash
  • lendingClub.account.transfer.add
  • lendingClub.account.transfer.withdraw
  • lendingClub.account.pendingTransfers
  • lendingClub.account.cancelTransfers
  • lendingClub.account.notesOwned
  • lendingClub.account.detailedNotesOwned
  • lendingClub.account.portFoliosOwned
  • lendingClub.account.createPortfolio
  • lendingClub.account.submitOrder

Metadata

  • ISC
  • Whatever
  • chad sahlhoff
  • released 5/21/2015

Downloads

Maintainers