Skip to content

sahlhoff/lending-club-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lending-club-api

Unofficial Lending Club API

Install:

npm install lending-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

About

Lending Club API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages