I'm also interested in taking over and I tried using the form to send an email but it fails.

Hi,

In the api.txt it says that http://www.ofxhome.com/api.php?all=yes will return this:
    <?xml?>
    <institutionlist>
    <institutionid name="American Express" id=1234/>
    <institutionid name="Bank of America" id=2222/>
    ...
    </institutionlist>
However the inistitutionid elements lack the closing '/' and what is returned instead is (note thesre is no '/' before the '>'):
    <?xml?>
    <institutionlist>
    <institutionid name="American Express" id=1234>
    <institutionid name="Bank of America" id=2222>
    ...
    </institutionlist>
Because of this importing it directly with a XmlReader is impossible (or I couldn't find a way).

Thanks.