Socket
Socket
Sign inDemoInstall

lending-club-api

Package Overview
Dependencies
64
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    lending-club-api

Lending club api, clone of lending-api with fixes


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Install size
3.30 MB
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 24 Jul 2015

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc