A Node.js API wrapper for Azlo Bank. Azlo is a completely online business bank account backed by BBVA Compass.
This repository is no longer active. Azlo is closed.
- Install the Azlo-Node npm library.
npm i --save azlo-node
The package needs to be configured with your API key which can be found on the Azlo website.
const azlo = require('azlo-node')('YOUR_API_KEY');
// Will show all of the user's accounts with full numbers shown
const accounts = await azlo.accounts.list({
unmask: true
});
You also can use a callback instead
azlo.accounts.list({ unmask: true }, (error, accounts) => {
if (error) {
console.log(error);
} else {
console.log(accounts);
}
});
- See the Examples to list accounts & transactions
- Request - Library used to make http calls