npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-lending-club-api

v1.0.14

Published

NodeJS implementation of the Lending Club API

Downloads

23

Readme

node-lending-club-api

NodeJS implementation of the Lending Club API

Prerequisites

You'll need to get a Lending Club API key from
https://www.lendingclub.com/account/profile.action.

You'll also need to know your account number (visible on your Account Summary page...big bold letters about "Available Cash"). Note: for simple scenarios, where one investor controls one account; I've found that account number serves as investorId. Your mileage may vary.
https://www.lendingclub.com/account/summary.action

#Installation and Initialization

npm install node-lending-club-api

Then in your Node APP

let lc = require('node-lending-club-api');

lc.init({ apiKey: '<insert your apikey here>' });

After that you are good to go!

Available Exports

Loan Listing

lc.loans.listing(showAll, cb)
https://www.lendingclub.com/developers/listed-loans.action

Summary

lc.accounts.summary(investorId, cb)
https://www.lendingclub.com/developers/summary

Available Cash

lc.accounts.availableCash(investorId, cb)
https://www.lendingclub.com/developers/available-cash.action

Add Funds

lc.accounts.funds.add(investorId, amount, transferFrequency, startDate, endDate, estimatedFundsTransferStartDate, cb)
note: for the transfer frequency argument, the module does export an "enum":

lc.accounts.funds.transferFrequency.LOAD_NOW
lc.accounts.funds.transferFrequency.LOAD_ONCE
lc.accounts.funds.transferFrequency.LOAD_BIWEEKLY
lc.accounts.funds.transferFrequency.LOAD_ON_DAY_1_AND_16
lc.accounts.funds.transferFrequency.LOAD_MONTHLY

https://www.lendingclub.com/developers/add-funds.action

Withdrawal Funds

lc.accounts.funds.withdrawal(investorId, amount, estimatedFundsTransferStartDate, cb)
https://www.lendingclub.com/developers/add-funds.action

Cancel Transfer

lc.accounts.funds.cancel(investorId, transferIds, cb)
**Note: ** trasnferIds should be an array of transfer ids
https://www.lendingclub.com/developers/cancel-transfers.action

Notes Owned

lc.accounts.notes(investorId, cb)
https://www.lendingclub.com/developers/notes-owned.action

Detailed Notes Owned

lc.accounts.detailedNotes(investorId, cb)
https://www.lendingclub.com/developers/detailed-notes-owned.action

Portfolios Owned

lc.accounts.portfolios(investorId, cb)
https://www.lendingclub.com/developers/portfolios-owned.action

Create Portfolio

lc.accounts.createPortfolio(investorId, accountId, portfolioName, portfolioDescription, cb)
https://www.lendingclub.com/developers/create-portfolio.action

Submit Order

lc.accounts.submitOrder(investorId, orders, cb)
**Note: ** To create objects for your orders array there is: lc.accounts.createOrderObject(loanId, requestedLoanAmount, portfolioId)
https://www.lendingclub.com/developers/submit-order.action

FolioFN Endpoints

Sell

lc.folio.sell(investorId, expireDate, notes, cb) https://www.lendingclub.com/foliofn/APIDocumentationSell.action

Buy

lc.folio.buy(investorId, expireDate, notes, cb) https://www.lendingclub.com/foliofn/APIDocumentationBuy.action

Callback Signature

The signature of the callback is function(err, res) where err passed from the request module; and res is the object returned from the lending club api itself (and defined in the referenced pages).

Dependencies

  • Request module
  • simple-rate-limiter