I need to pull bank account statements from a number of different sources. I'd love to be able to get this data in some sort of standardized fashion, be it CSV or OFX or XML or whatever. I just need to be able to get this data. I'll be using my own account to grab transactions from, so there shouldn't be too many 'legal' problems there. How do sites like Mint.com get bank statements? They simply ask for your account information, the URL, and then they're off and running. How can I do this?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Write a screen scraper in your favorite language to do it. Automate it away.

Normally banks give you access up to three months of transactions via their online services.

Don't forget to make it push the panic button when the screen scraping fails.

The main point here is to automate it so that the pain (of running it manually) goes away so that all you see are "constantly" updated transactions of your accounts.

link|improve this answer
I'm completely new to screen scraping. I'm writing my application in Python, any idea on where to start, module-wise? I found Bankjob (a Ruby scraper), but I really need it in Python. My bank does support exporting transactions to OFX, but there's not specifically a way to automate it other than via scraping. Thanks. – TK Kocheran Apr 7 '11 at 19:05
Have a look at beautiful soup: crummy.com/software/BeautifulSoup. It's pretty decent. – holygeek Apr 8 '11 at 0:24
How do you write a screen scraper that will deal with the fact that some banks have complicated javascript that runs during the login process and the need to run the scraper from the command line without a GUI? – Michael 2 days ago
Nowadays we can run webkit headless with JavaScript engine and all. Check out phantomjs – holygeek 2 days ago
feedback

I read a comprehensive technical article on this awhile ago, however, I can't find it. From my memory this is what mint does to get data from your bank:

  1. Query API from this company: http://www.finappstore.com/
  2. If bank isn't in above API they fallback to screen scraping
link|improve this answer
I'm somewhat confused as to how that website helps out any. Do they have an API for getting statements? ie: is it worth my time to register with them? ;) – TK Kocheran Apr 7 '11 at 19:07
I thought that the finappstore API is only available from flex through their code/protocol. – Colin Harrington Jun 4 '11 at 16:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.