views:

156

answers:

2

Does someone know of a reliable free web service providing the latest exchange rates ? I do not need accuracy to the minute, just to the day.

+1  A: 

There are scads of currency converters on the web. You just need to find one whose info is not concealed inside some java applet or something.

Google's output is easy to parse. I use it to grab stock quotes.

For exchange rates, you can use the output from Google proper. For example, read the page

http://www.google.com/search?q=1+australian+dollar+in+euros

Grep for a string that looks like "<b>1 Australian dollar = 0.643960827 Euros</b>".

Jive Dadson
Thanks, I could do that, but for now, I'd like to find a web service doing this.
Locksfree
I guess you're looking for something formatted in SOAP or something like that. Well, good luck. The New York Fed had a free service, but they discontinued it because it competed with for-profit businesses. I found it real easy to use Google for stock quotes - and you can't beat the price!
Jive Dadson
+3  A: 

I've made one (to try out Google AppEngine). It's mainly aimed at historical currencies, but you can get today's value as well, with a very simple RESTfull interface:

http://currencies.apps.grandtrunk.net/

Wim
Thank you, I'll take a look.
Locksfree
+1 Doesn't get easier than that!
T.J. Crowder