Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are some OFX (Open Financial Exchange) APIs?

Tags:

I am planning to develop a small application which displays my bank account details(like Mint.com) where I can customize the display of my own. I want to know how and where to start.

  1. Where these OFX API's are available?
  2. Are they free or we need to pay and get access to those API?
  3. What is data format ( xml, xml/atom, json) ?
  4. Any article or document to understand this requirement and start developing?
  5. Any open source software where I can download the code and customize it?

If I want to develop a application like Mint.com what are the other companies provide API's other than Yoodlee? What is the pricing like?

like image 503
Gabriel Susai Avatar asked Nov 19 '09 15:11

Gabriel Susai


People also ask

What is OFX API?

The OFX Rates API connects partners to the OFX rate feed allowing partners to display and utilize a live FX rate feed.

What opens OFX format?

For Mac users, OFX files can be opened by using GnuCash, Intuit Quicken, Reilly Technologies Moneydance and Apple Numbers. For Microsoft Windows users, they can be opened using GnuCash, Sage Accpac, Microsoft Money, Intuit Quicken and Reilly Technologies Moneydance.

What is Microsoft OFX?

Open Financial Exchange (OFX) is a data-stream format for exchanging financial information that evolved from Microsoft's Open Financial Connectivity (OFC) and Intuit's Open Exchange file formats. Open Financial Exchange.


1 Answers

As others have mentioned, Yodlee is the only company providing a high-level interface to this kind of data. They are also fairly expensive and the API is meant for big-time products, not personal projects.

As for your OFX questions,

Q: Where these OFX API's are available?

A: http://ofx.net

Q: Are they free or we need to pay and get access to those API?

A: They are free and open. The list of server URLs are a bit more tricky to acquire. There is an open wiki-type list of OFX servers at OfxHome, but beware of copying that data wholesale as bank OFX connection information should be verified multiple times over. You obviously don't want to send customers to a trojan OFX server that a random person got inserted into ofxhome.com.

Q: What is data format ( xml, xml/atom, json) ?

A: OFX 1.* used SGML but OFX 2.* (which I've not encountered in the wild) uses XML.

Q: Any article or document to understand this requirement and start developing?

A: ofx.net has very complete specifications of the OFX protocol which is mainly an exchange of OFX-format files over https.

Q: Any open source software where I can download the code and customize it?

A: Sorry, I don't know of any C# software to talk OFX

Hope this helps, Sean

like image 95
Sean Reilly Avatar answered Dec 06 '22 14:12

Sean Reilly