Barclays(3) User Contributed Perl Documentation Barclays(3) NNAAMMEE Finance::Bank::Barclays - Check your Barclays bank accounts from Perl SSYYNNOOPPSSIISS 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}; } DDEESSCCRRIIPPTTIIOONN This module provides a rudimentary interface to the Bar­ clays Online Banking service at "https://ibank.bar­ clays.co.uk". You will need either "Crypt::SSLeay" or "IO::Socket::SSL" installed for HTTPS support to work with LWP. CCLLAASSSS MMEETTHHOODDSS check_balance(memnumber => $u, passcode => $p, surname => $s, password => $w) Return an array of account objects, one for each of your bank accounts. OOBBJJEECCTT MMEETTHHOODDSS $ac->sort_code $ac->account_no Return the account sort code (in the format XX-YY-ZZ) and the account number. $ac->balance Return the account balance as a signed floating point value. WWAARRNNIINNGG This warning is from Simon Cozens' "Finance::Bank::Lloyd­ sTSB", and seems just as apt here. This is code for oonnlliinnee bbaannkkiinngg, and that means yyoouurr mmoonneeyy, and that means BBEE CCAARREEFFUULL. You are encouraged, nay, expected, to audit the source of this module yourself to reassure yourself that I am not doing anything untoward with your banking data. This software is useful to me, but is provided under NNOO GGUUAARRAANNTTEEEE, explicit or implied. TTHHAANNKKSS Simon Cozens for "Finance::Bank::LloydsTSB" and Perl hand-holding. Chris Ball for "Finance::Bank::HSBC". AAUUTTHHOORR Dave Holland "dave@biff.org.uk"