vote up 20 vote down star
16

I'm setting up an online ordering system but I'm in Australia and for international customers I'd like to show prices in US dollars or Euros so they don't have to make the mental effort to convert from Australian dollars.

Does anyone know if I can pull up to date exchange rates off the net somewhere in an easy-to-parse format I can access from my PHP script ?


UPDATE: I have now written a PHP class which implements this. You can get the code from my website.

flag

7 Answers

vote up 10 vote down check

You can get currency conversions in a simple format from yahoo:

For example, to convert from GBP to EUR: http://download.finance.yahoo.com/d/quotes.csv?s=GBPEUR=X&f=sl1d1t1ba&e=.csv

link|flag
That is up to date and easy to parse. This is what I am after. – Adam Pierce Oct 8 '08 at 10:29
I am also interested in this, is there any information on what the parameters stand for? Specifically the "f" parameter. I can't find any info anywhere. – Fishcake Oct 8 at 6:12
vote up 1 vote down

coinnill.com has a sort-of web-service.

http://coinmill.com/rss/AUD_USD.xml

will give you the AUD --> USD rate for example. You'll just need to parse the XML that comes back.

link|flag
That data seems out of date. It says AUD is 0.77 but I know it is 0.69 today. – Adam Pierce Oct 8 '08 at 10:12
vote up 1 vote down

XE.com provides feed for their exchange rates. Not free though.

link|flag
vote up 4 vote down

Here is a Soap service that offers exchange rate

http://www.newyorkfed.org/markets/pilotfx.html

link|flag
3  
Shame it's SOAP and not REST. Apart from that, it's a useful facility – David Arno Oct 8 '08 at 10:34
Is this free and stable? Will I be able to ship software that relies on this? – Moe Jan 1 '09 at 15:43
3  
apparently they stopped doing this @ 31.12.2008 – Sevki Apr 9 at 19:53
vote up 1 vote down

This site has a currency converter service for free:

http://www.webservicex.net/WS/WSDetails.aspx?WSID=10

link|flag
vote up 3 vote down

Might be nice to add

  http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml

to the list.

The official reference rates provides by the European Central Bank based on the regular daily concertation procedure between central banks within and outside the European System of Central Banks.

The feed is in XML and some other formats.
Updating normally takes place at 2.15 p.m. (14:15) ECB time (= Frankfurt time).

link|flag
vote up 0 vote down

Oanda.com exposes currency rates as an XML API, but not for free

link|flag

Your Answer

Get an OpenID
or

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