personal-capital-sdk
v1.0.1
Published
Node.js SDK for Personal Capital
Maintainers
Readme
Node.js SDK for the Personal Capital private API.
Node.js SDK that implements the private API for Personal Capital.
Authentication to the Personal Capital API is a bit tricky, as it's cookie-based, so the SDK is using a persisted cookie storage mechanism, where cookies are stored in a JSON file. This enables 2FA authentication to work, as the cookie session is restored upon load.
Installation
$ npm install personal-capital-sdkExample
const PersonalCapital = require("personal-capital-sdk").PersonalCapital;
let pc = new PersonalCapital({
cookiePath: "./pc-state.json",
});
(async () => {
try {
await pc.login("username", "password");
console.log("authenticated!");
let accounts = await pc.getAccounts();
console.log("accounts", accounts);
} catch (err) {
console.log("err", err);
if (err.message == "2FA_required") {
console.log("2FA_required");
await pc.challangeTwoFactor("sms");
//await pc.enterTwoFactorCode("sms", "<code>");
//await pc.login("username", "password");
//let accounts = await pc.getAccounts();
}
}
})();API
Authentication:
loginchallangeTwoFactorenterTwoFactorCode
API:
getHoldingsgetAccountsgetHistoriesgetUserTransactionsupdateInvestmentCashBalance
License
MIT
Credits
- John Collins (@jamaicanmoose) for https://github.com/JamaicanMoose/personalcapital-js
- Haochi Chen (@haochi) for https://github.com/haochi/personalcapital
