Programmatically access currency exchange rates - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T23:33:33Z http://stackoverflow.com/feeds/question/181990 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/181990/programmatically-access-currency-exchange-rates 20 Programmatically access currency exchange rates Adam Pierce 2008-10-08T09:58:42Z 2009-10-01T00:20:18Z <p>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.</p> <p>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 ?</p> <p><hr /></p> <p><strong>UPDATE:</strong> I have now written a PHP class which implements this. <a href="http://www.doctort.org/adam/general/currency-calculation-in-php.html" rel="nofollow">You can get the code from my website</a>.</p> http://stackoverflow.com/questions/181990/programmatically-access-currency-exchange-rates/181993#181993 1 Answer by cagcowboy for Programmatically access currency exchange rates cagcowboy 2008-10-08T09:59:43Z 2008-10-08T10:03:57Z <p>coinnill.com has a sort-of web-service.</p> <blockquote> <p><a href="http://coinmill.com/rss/AUD_USD.xml" rel="nofollow">http://coinmill.com/rss/AUD_USD.xml</a></p> </blockquote> <p>will give you the AUD --> USD rate for example. You'll just need to parse the XML that comes back.</p> http://stackoverflow.com/questions/181990/programmatically-access-currency-exchange-rates/182004#182004 1 Answer by jop for Programmatically access currency exchange rates jop 2008-10-08T10:06:48Z 2008-10-08T10:06:48Z <p><a href="http://www.xe.com/cus/" rel="nofollow">XE.com</a> provides feed for their exchange rates. Not free though.</p> http://stackoverflow.com/questions/181990/programmatically-access-currency-exchange-rates/182006#182006 4 Answer by Ólafur Waage for Programmatically access currency exchange rates Ólafur Waage 2008-10-08T10:07:16Z 2008-10-08T10:07:16Z <p>Here is a Soap service that offers exchange rate</p> <p><a href="http://www.newyorkfed.org/markets/pilotfx.html" rel="nofollow">http://www.newyorkfed.org/markets/pilotfx.html</a></p> http://stackoverflow.com/questions/181990/programmatically-access-currency-exchange-rates/182013#182013 1 Answer by Ch00k for Programmatically access currency exchange rates Ch00k 2008-10-08T10:10:31Z 2008-10-08T10:10:31Z <p>This site has a currency converter service for free:</p> <p><a href="http://www.webservicex.net/WS/WSDetails.aspx?WSID=10" rel="nofollow">http://www.webservicex.net/WS/WSDetails.aspx?WSID=10</a></p> http://stackoverflow.com/questions/181990/programmatically-access-currency-exchange-rates/182045#182045 10 Answer by Greg for Programmatically access currency exchange rates Greg 2008-10-08T10:23:43Z 2008-10-08T10:23:43Z <p>You can get currency conversions in a simple format from yahoo:</p> <p>For example, to convert from GBP to EUR: <a href="http://download.finance.yahoo.com/d/quotes.csv?s=GBPEUR=X&amp;f=sl1d1t1ba&amp;e=.csv" rel="nofollow">http://download.finance.yahoo.com/d/quotes.csv?s=GBPEUR=X&amp;f=sl1d1t1ba&amp;e=.csv</a></p> http://stackoverflow.com/questions/181990/programmatically-access-currency-exchange-rates/598272#598272 3 Answer by Jacco for Programmatically access currency exchange rates Jacco 2009-02-28T16:35:27Z 2009-02-28T16:56:16Z <p>Might be nice to add</p> <p>&nbsp; <a href="http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml" rel="nofollow">http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml</a></p> <p>to the list.</p> <p>The official reference rates provides by the <a href="http://www.ecb.int/" rel="nofollow">European Central Bank</a> based on the regular daily concertation procedure between central banks within and outside the European System of Central Banks. </p> <p>The feed is in XML and <a href="http://www.ecb.int/stats/exchange/eurofxref/html/index.en.html#dowloads" rel="nofollow">some other formats</a>.<br /> Updating normally takes place at 2.15 p.m. (14:15) ECB time (= Frankfurt time). </p> http://stackoverflow.com/questions/181990/programmatically-access-currency-exchange-rates/1501314#1501314 0 Answer by Eugene Osovetsky for Programmatically access currency exchange rates Eugene Osovetsky 2009-10-01T00:20:18Z 2009-10-01T00:20:18Z <p>Oanda.com exposes currency rates as an XML API, but not for free</p>