Banking API/protocol [closed]
Asked Answered
S

8

42

Do any banks offer data feeds of personal accounts via any form of API? I'm essentially looking to check balances on accounts without logging into their website.

I remember reading about a universal banking protocol at some point... and maybe mint.com uses it to access accounts? Does mint.com have a special relationship with each bank, or can I leverage their method?

Edit: For my requirements, I'm only interested in accessing my own financial data.

Sandalwood answered 12/8, 2010 at 16:2 Comment(0)
C
29

Look up the Open Financial Exchange (OFX) format on the web. That (I believe) is a generic format for the banking industry.

Conias answered 12/8, 2010 at 16:5 Comment(2)
It's not commonly used in the UK where most banks don't provide any API.Scarborough
Well, then UK banks wont get to play with us !!Conias
S
22

API access

You will need to check with each institution if they provide an API for direct access. Some will provide access over a dial-up line, others have more modern IP based service. Each will likely require you to register and pay a fee.

Easier is to require the user to download their statement from the bank and import it into your application. Most online banking systems provide this functionality.

Formats

Either way, there are several formats supported by banks (taken from here).

  • OFX (Open Financial Exchange)
  • QIF (Quicken Interchange Format)
  • CSV (Comma-Separated Value)

You might see OFX referred to as Quickbooks, Microsoft Money 2005 or Sage Line 50. QIF is sometimes called Quicken 98 or 2000, or Microsoft Money 2003.

CSV formats will be proprietary per institution and require parsing logic developed for each instance.

Who uses what format

The UK banks that support OFX or QIF formats are:

  • Abbey (QIF, but not Abbey Business)
  • Alliance and Leicester (OFX and QIF)
  • Barclays (OFX)
  • Clydesdale (QIF)
  • Coutts & Co (OFX and QIF)
  • First Direct (QIF)
  • Halifax (OFX and QIF)
  • HSBC (OFX)
  • Lloyds (QIF)
  • NatWest(OFX)
  • Nationwide (OFX)
  • Royal Bank of Scotland (OFX and QIF)
  • Tesco (OFX and QIF)
  • Yorkshire (QIF)
Scarborough answered 12/8, 2010 at 16:30 Comment(1)
You can find the urls for accessing your ofx files for various banks at...ofx-cqat-filist.intuit.com/qbm1800/data/fidir.txt and wiki.gnucash.org/wiki/OFX_Direct_Connect_Bank_Settings. You have to send a specially formatted request. There's a python utility at microsoftmoneyoffline.wordpress.com/2010/02/06/… called ofx-ba.py which shows you how to format the request.Winburn
E
14

It is possible to write a basic screen scraper to pull account transactions from your Mint.com account. Of course, this means you'll have to have an account set up there and let them to the dirty work for you.

CasperJS is a great tool that makes this fairly trivial, you will need to install both Casper and PhantomJS, the framework it is built on.

var casper = require('casper').create();

casper.start('https://wwws.mint.com/login.event', function() {
    this.fill('form#form-login', {
        username: 'mintusername',
        password: 'mintpassword'
    }, true);
}).then(function() {
    this.echo('Downloading transaction history...')
    this.download('https://wwws.mint.com/transactionDownload.event', '/path/to/save/transactions.csv');
});

casper.run(function() {
    this.echo('Done.').exit();
});

This script logs into your Mint account, and downloads your transaction history (as a CSV file) to wherever you specify. From there, you can do what you like with the data. Of course, this script could be expanded significantly to do more advanced things, or to filter the transactions it pulls down, but as a matter of best practice I would advise keeping the screen scraping as simple as possible and add the logic on your program's end.

You can have this script run periodically using launchd for Mac OS X or cron for most Linux flavors.

Erg answered 30/4, 2012 at 17:55 Comment(5)
For a question specifically asking about personal finance this is probably the best solution. Actually, I'm going to do this myself. +1 for showing me CasperJSBoothe
Use wwws.mint.com/transactionDownload.event?startDate=07/01/… to filter by date. I'm sure there are other parameters as wellBoothe
Do you know there any solutions like this that can run on mobile devices? (webview or phantomjs driven by something like casper or watir). I've googled and pretty sure there isn't but just wanted to ask.Busby
Yuk. Screen scraping. Screen scraping a product which already uses screen scraping!Hashimoto
@geedubb, agreed. It's not pretty, but there's a reason they use screen scraping, and I'd rather scrape one source than potentially dozens!Erg
C
4

Intuit are lauching new data services with access to over 18000 financial institutions via secure apis. I am not privy as to whether they will include UK banksand financial institutions, but here is the link:

https://developer.intuit.com/page/CustomerAccountData

Chattanooga answered 23/2, 2012 at 19:6 Comment(2)
link is 404'd. never trust anything that comes out of intuit's mouth. their financial mgmt softwares are inherently and inextricably linked to the desktop era. they've acquired mint.com and stalled/grounded the entire thing. they are as evil as microsoft, prism, or hitler.Mitigate
Note from the site: Monthly Minimum Recurring Fee: $1,000.00Rebound
D
0

You could try Swift (see message types), its not the kind of thing you can just set up though, you'd have to speak to each institution you wanted to work with.

Demodulate answered 12/8, 2010 at 16:5 Comment(2)
Swift is a bit more serious, it requires membership to Swift (which is expensive), a serious amount of security red-tape and more!Scarborough
I think its the only option if you want to get the account balance for an account which doesn't belong to you - after all thats not exactly the sort of data you want to open up to all and sundryDemodulate
S
0

There is a standard protocol known as OFX (ofx.net) that might meet your needs. Microsoft Money and Quicken both use it to update data.

Silici answered 12/8, 2010 at 16:6 Comment(0)
C
0

For those not overtly concerned about paying a fiver for an OFX converter, designed to handle Nationwide FlexAccount, e-Savings and Creditcards try the Nationwide OFX Converter.

For other banks and creditcards try iCreateOFX Basic and for Investment files try iCreateOFX Investment.

Chattanooga answered 23/11, 2010 at 14:16 Comment(0)
A
0

In Europe, you could use www.agregadorfinanciero.com API.

Align answered 29/11, 2014 at 12:24 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.