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.

link|improve this question

2  
Get them from Google! Google has an Exchange Rate API you can call. It's rest based and returns a JSON object. I have a sample on my site here: jarloo.com/code/api-code/exchange-rate-api – Kelly May 1 '11 at 2:59
@Kelly: Very good suggestion, because Google is free, and has great chances to still be around in the foreseeable future: I would like to suggest that you submit it as an answer. – EOL Jun 5 '11 at 8:47
feedback

13 Answers

up vote 40 down vote accepted

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|improve this answer
That is up to date and easy to parse. This is what I am after. – Adam Pierce Oct 8 '08 at 10:29
2  
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 '09 at 6:12
2  
Is it legal to read this data if you have a commercial website? – Junior Mayhé Jan 22 '10 at 21:54
The "f" field seems to be a (non delimited) list of fields you wish to see in the resulting csv file. A little experimentation reveals the field code "n" may also be handy. – Myster Feb 21 '10 at 22:13
2  
Further experimentation shows you can request multiple conversion rates at once by comma separating the symbols in the 's' parameter like so: download.finance.yahoo.com/d/… – Myster Feb 21 '10 at 22:16
show 3 more comments
feedback

This answer is VERY late, but there is a key bit of info missing from the above answers.

If you want to show accurate prices to your customers it is important to understand how foreign exchange rates work.

Most FX services only quote the spot rate (midway between the Bid and Ask). The spot is a kind of shorthand for the exchange rate, but no one gets the spot because you can only sell at the bid or buy at the ask. You're usually looking at least a 1% spread between them, so the spot rate is 0.5% off for your customers.

But it doesn't stop there, your customers almost certainly are using a credit card and Visa/Mastercard/Amex all charge foreign exchange fees. These are non-trivial in my experience, at LEAST 2.5%. For example, Citibank Australia charges 3.3%. These vary from card to card so there's no way for you to predict the final price that your customers will be billed.

If you want to quote an "accurate" price to your customers based on an exchange rate, you need to factor in the above and provide a buffer so that you don't end up charging more than what you quoted.

FWIW, I've been adding 4% to what the F/X conversion would otherwise indicate.

link|improve this answer
Also, forex rates change all the time, and banks may only take into account the rate at midnight, local time. With ~2% daily volatility, there is incertitude. – Alexandre C. Sep 29 '10 at 9:02
That's a great point. Definitely reinforces the need for a buffer of some kind if you are displaying one currency, but charging another. For what it is worth, with my 4% padding, I've never had anyone do a chargeback. – philoye Oct 1 '10 at 6:28
feedback

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|improve this answer
seems to be unavailable. I found ecb.int/euro.html – Junior Mayhé Jan 22 '10 at 22:05
2  
Just checked (20 minutes after your comment) and it available for me. – Jacco Jan 22 '10 at 22:27
I've just been trying to use this, but VB.NET refuses to XPath it properly. Is this because the URLs defining the namespaces are both 404ing? – Rikki Apr 3 at 15:14
feedback

Here is a Soap service that offers exchange rate

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

link|improve this answer
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 '09 at 19:53
feedback

I added Open Data table to YQL, you can use it to retrieve exchange rate data from yahoo.finance.

Try it in YQL console

Comma-separated format is preferrable over "where pair in ('EURUSD','GBPUSD')" but anyway, you can use both and even intermix them.

link|improve this answer
Thanks dude. This combined with the YQL docs on PHP helped me big time! – miCRoSCoPiC_eaRthLinG Apr 21 '11 at 4:26
hi, can we add date parameter e.g. I want to get historical exchange rate. – Krishna Sunuwar Feb 10 at 8:26
feedback

This site has a currency converter service for free:

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

link|improve this answer
Simple XML format, thanks! – Jamie Keeling Apr 11 at 20:50
feedback

another very great free and opensource link is this:

https://raw.github.com/currencybot/open-exchange-rates/master/latest.json

(I found about it here: http://josscrowcroft.github.com/open-exchange-rates/)

No access fees, no rate limits, no ugly XML - just free, hourly updated exchange rates in JSON format.

I hope this helps. : )

link|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

I feel compelled to add:

http://www.exchangerate-api.com/

Dead simple to use with a clean RESTful API and signup takes 5 seconds. Includes coding examples for most major languages, most are 2-3 lines long.

Rates are updated hourly, so it's fine for most uses, and you can get 30000 monthly queries for $7 a month. I've never needed more than that, but the rates are very reasonable for higher volumes.

link|improve this answer
feedback

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|improve this answer
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
Also, the useful piece of data (the exchange rates) are the only bit not encoded in XML! It's just plaintext in a CDATA... – Rikki Apr 3 at 15:19
feedback

Try this RESTful (I'm not sure if this is really a REST, since i got this originally from a SOAP, I just tried to access it using HTTP GET)

link|improve this answer
I don't see where you supplied the "amount" to convert, yet you get some number back... can you please explain this? – spokane-dude Oct 3 '11 at 13:44
It doesn't accept an amount. This will only convert fromCurrency to toCurrency where fromCurrency's amount is always one (1). Then it's up to you to make your algorithm of converting your amount – Kevin Oct 4 '11 at 8:33
Thank you... that makes sense. now... – spokane-dude Oct 4 '11 at 13:50
feedback

If you wish to auto retrieve the commonly used currency code and its latest exchange rate, you may consider this http://www.ip2currency.com. This webservice combined the geolocation technology with currency exchange rate, that you will only need to supply the IP address and your base currency, it will return you the relevant result.

Option also given if you want the explicit exchange rate conversion. However, this is a paid license, free license available with limited quota per month.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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