1.1.0 • Published 7 months ago

@ryanforever/plaid v1.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
7 months ago

plaid

Simple Plaid API wrapper!

quickstart

const Plaid = require("@ryanforever/plaid")
const plaid = new Plaid({
   clientId: process.env.PLAID_CLIENT_ID,
   secret: process.env.PLAID_SECRET,
   accessToken: process.env.ACCESS_TOKEN
})

plaid.getTransactions().then(console.log) // get account transactions
plaid.getBalance().then(console.log) // get account balances