https://github.com/sahlhoff/lending-club-api
Lending Club API
https://github.com/sahlhoff/lending-club-api
Last synced: 3 months ago
JSON representation
Lending Club API
- Host: GitHub
- URL: https://github.com/sahlhoff/lending-club-api
- Owner: sahlhoff
- Created: 2015-05-19T05:04:56.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-04-01T03:07:22.000Z (over 10 years ago)
- Last Synced: 2025-10-27T15:37:04.240Z (10 months ago)
- Language: JavaScript
- Size: 12.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lending-club-api
Unofficial Lending Club API
Install:
```
npm install lending-api
```
How to use it:
Require lending-api:
```js
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.
```js
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