Finance::Bank::Barclays

Check your bank balance from Perl, using the Barclays Online Banking service.
         use Finance::Bank::Barclays;
         my @accounts = Finance::Bank::Barclays->check_balance(
                 memnumber => "xxxxxxxxxxxx",
                 passcode => "12345",
                 surname => "Smith",
                 password => "xxxxxxxx"
         );

         foreach (@accounts) {
                 printf "%8s %8s : GBP %8.2f\n",
                 $_->{sort_code}, $_->{account_no}, $_->{balance};
         }

Download the current version (0.12).

New in 0.12 (24 May 2007): handle the longer membership number input field.
New in 0.10 (3 June 2004): skip the interstitial "what's new" page. Thanks to Matt Biddulph for the patch.
New in 0.09 (19 December 2003): follow the redesigned login page.
New in 0.08: handle https proxy correctly when using Crypt::SSLeay and Net::SSL.


Dave Holland <dave@biff.org.uk>
$Id: barclays.html,v 1.8 2007-05-24 08:25:45 dave Exp $