Unofficial The Commonwealth Bank of Australia NetBank API wrap for Node.js
npm install node-cba-netbank -g
$ cba-netbank --help
CBA Netbank CLI
Usage: cba-netbank <command> [args]
Commands:
list List accounts
download Download transactions history for given account
ui Interactive user interface.
Options:
-u, --username client number [string] [required] [default: $NETBANK_USERNAME]
-p, --password password [string] [required] [default: $NETBANK_PASSWORD]
--help Show help [boolean]
There are 3 commands, list
, download
and ui
.
Username and password can be given via the arguments, --username
and --password
, as well as the environment variables, NETBANK_USERNAME
and NETBANK_PASSWORD
.
You can use list
command to see the account list, and use download
command to download the transaction history in given format, there are more arguments for download
command:
$ cba-netbank download --help
cba-netbank download
Options:
-u, --username client number [string] [required] [default: $NETBANK_USERNAME]
-p, --password password [string] [required] [default: $NETBANK_PASSWORD]
--help Show help [boolean]
-a, --account account name or number [string] [required]
-f, --from history range from date [string] [default: "03/04/2017"]
-t, --to history range to date [string] [default: "03/07/2017"]
-o, --output output file name
[string] [default: "[<name>](<number>) [<from> to <to>].<ext>"]
--format the output file format
[string] [choices: "json", "csv", "qif", "aus.qif", "us.qif", "ofx"] [default:
"json"]
You can use -a
to specify which account you want to download the history from, and the value can be part of the name or account number. For example, if the account name you want to specified is Smart Access
, then you can use -a smart
to save some time.
Currently, JSON
, CSV
, QIF
and OFX
format is supported for the transactions history export format.
About the QIF format, there are several options:
qif
is most common one, which is forQIF(MYOB, MSMoney, or Quicken 2005 or later)
;aus.qif
is for some old software, such asQIF (Quicken AUS 2004 or earlier)
;us.qif
is for some old software, such asQIF (Quicken US 2004 or earlier)
.
This is an UI you can just use <UP>
and <DOWN>
key to list accounts and its recent transactions.
$ cba-netbank ui
Logon as account 1234567 ...
? Which account?
❯ Smart Access (062001 12340001) Balance: $987.65 Available Funds: $907.65
NetBank Saver (062002 12340012) Balance: $4321.01 Available Funds: $4021.00
GoalSaver (062003 12340013) Balance: $32109.87 Available Funds: $32109.87
Complete Access (062004 12340014) Balance: $1234.56 Available Funds: $1023.45
MasterCard Platinum ( 5520123456789012) Balance: $-1234.56 Available Funds: $12345.67
<Quit>
Use <UP>
and <DOWN>
key to select an account then press <ENTER>
, the recent transaction history will be downloaded and shown below.
Downloading history [03/05/2017 => 03/07/2017] ...
Time Description Amount Balance
---------------- ------------------------------------------------------------------------------ -------- --------
2017-07-01 00:00 PENDING - HURSTSVILLE TONGLI S HURSTVILLE , 0701; LAST 4 CARD DIGITS 4341 $-3.09
2017-07-01 00:00 PENDING - DAMS APPLE AT THE STAT HURSTVILLE , 0701; LAST 4 CARD DIGITS 4341 $-12.37
...
2017-07-01 04:39 THE NAKED DUCK DARLING SYDNEY NS AUS; Card xx4341; Value Date: 28/06/2017 $-13.50 $909.66
2017-07-01 04:39 TOPSHOP TOPMAN SYDNE SYDNEY AUS; Card xx4341; Value Date: 30/06/2017 $-80.00 $927.16
...
2017-06-12 16:13 Cardless Cash for collection $-40.00 $1111.83
Total 69 transactions and 12 pending transactions.
To quit the CLI, just select <Quit>
then press <Enter>
.
npm install node-cba-netbank --save
API: netbank.logon(username, password)
username
: the netbank client number;password
: the netbank password;
Returned object will contains an accounts
field, which contains all the account information.
const Netbank = require('node-cba-netbank');
const netbank = new Netbank();
netbank.logon('76543210', 'YOUR_PASSWORD')
.then(resp => {
// output account to console
resp.accounts.forEach(
a => console.log(`${a.name} (${a.bsb} ${a.account}) => ${a.balance}/${a.available}`)
);
})
.catch(console.error);
Just replace 76543210
with your client number, and replace
YOUR_PASSWORD
with your netbank password.
The result will look like below:
Smart Access (062001 12340001) => 987.65/907.65
NetBank Saver (062002 12340012) => 4321.01/4021.00
...
For each account, there are following properties:
name
: Account name;url
: Transaction page for the account, it will be different everytime you logged in;bsb
: BSB number;account
: Account number (without BSB part);number
: The entire account number,bsb
+account
, without space;balance
: Current account balance. It might be different from the available funds;available
: Current available funds of the account.
API: netbank.getTransactionHistory(account, from, to)
account
: one of the account object retrieved from the previous.logon()
apifrom
: the begin date of the search period. format isDD/MM/YYYY
, [default: 6 years ago (bank may not store transactions for such long time.)]to
: the end date of the search period. format isDD/MM/YYYY
, [default: today]
The returned object will contains following field:
transactions
: the processed transactions;pendings
: the pending transactions;
const Netbank = require('node-cba-netbank');
const netbank = new Netbank();
netbank.logon('76543210', 'YOUR_PASSWORD')
// Assume we are going to retrieve the transactions of the first account, from '1/1/2017' to today
.then(resp => netbank.getTransactionHistory(resp.accounts[0], '1/1/2017'))
.then((resp) => {
// output transactions to console
resp.transactions.forEach(t => console.log(`${t.date} ${t.description} => ${t.amount}`));
})
.catch(console.error);
Be aware, it might take several minutes if there are thousands transactions.
The transaction list will look like below:
2015-04-20T00:00:00.004Z SO THAI RESTAURANT KOGARAH => -13.9
2015-04-20T00:00:00.003Z NOK NOK SYDNEY => -41.8
...
For each transaction object, there are following properties:
timestamp
: Timestamp of given transaction, it's milliseconds since epoch. Although, it might be pretty accurate for some accounts (non-credit card account), it might just be accurate at date level;date
: It's human readable date format;description
: Transaction description;amount
: Transaction amount, negative value is DR, positive value is CR;balance
: The balance of the account after the transaction happened, however, the field might be empty for some accounts, such as credit card account;trancode
: It's a category code for the transaction, such as ATM, EFTPOS, cash out might be different code;receiptnumber
: The receipt number for the transaction. However, I cannot found it on my real paper receipt, and the field might be missing for some accounts, such as credit card account;
Offline test can be done by simply run yarn test
.
To enable real world testing, please set environment variables NETBANK_USERNAME
and NETBANK_PASSWORD
to your client number and password for online banking.
Then run command:
yarn test
to have more details, you can run yarn test-debug
for more verbose output.
The test will try to login and get transactions from the first account, and if it will fail if the retrieved transactions number is less than 400. It's ok if you don't have that much transactions in the account. The purpose of checking whether it get more than 400 transactions is to check whether it can overcome the maximum transactions limits.