Programmatically access currency exchange rates - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T23:33:33Zhttp://stackoverflow.com/feeds/question/181990http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/181990/programmatically-access-currency-exchange-rates20Programmatically access currency exchange ratesAdam Pierce2008-10-08T09:58:42Z2009-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#1819931Answer by cagcowboy for Programmatically access currency exchange ratescagcowboy2008-10-08T09:59:43Z2008-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#1820041Answer by jop for Programmatically access currency exchange ratesjop2008-10-08T10:06:48Z2008-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#1820064Answer by Ólafur Waage for Programmatically access currency exchange ratesÓlafur Waage2008-10-08T10:07:16Z2008-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#1820131Answer by Ch00k for Programmatically access currency exchange ratesCh00k2008-10-08T10:10:31Z2008-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#18204510Answer by Greg for Programmatically access currency exchange ratesGreg2008-10-08T10:23:43Z2008-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&f=sl1d1t1ba&e=.csv" rel="nofollow">http://download.finance.yahoo.com/d/quotes.csv?s=GBPEUR=X&f=sl1d1t1ba&e=.csv</a></p>
http://stackoverflow.com/questions/181990/programmatically-access-currency-exchange-rates/598272#5982723Answer by Jacco for Programmatically access currency exchange ratesJacco2009-02-28T16:35:27Z2009-02-28T16:56:16Z<p>Might be nice to add</p>
<p> <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#15013140Answer by Eugene Osovetsky for Programmatically access currency exchange ratesEugene Osovetsky2009-10-01T00:20:18Z2009-10-01T00:20:18Z<p>Oanda.com exposes currency rates as an XML API, but not for free</p>