Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>For posterity here they are along with other possible answers:</p> <p><strong>Google exchange rate query (parsed)</strong></p> <p>Request: <a href="http://rate-exchange.appspot.com/currency?from=USD&amp;to=EUR" rel="nofollow noreferrer">http://rate-exchange.appspot.com/currency?from=USD&amp;to=EUR</a> Response:</p> <pre><code>{"to": "EUR", "rate": 0.76911244400000001, "from": "USD"} </code></pre> <p>Based on this comment.</p> <p><strong>Open Exchange Rates API</strong></p> <p>Free for up to 1000 hits per month. Request: <a href="http://openexchangerates.org/latest.json" rel="nofollow noreferrer">http://openexchangerates.org/latest.json</a> Response:</p> <pre><code>{ "disclaimer": "This data is collected from various providers ...", "license": "all code open-source under GPL v3 ...", "timestamp": 1323115901, "base": "USD", "rates": { "AED": 3.66999725, "ALL": 102.09382091, "ANG": 1.78992886, // 115 more currency rates here ... } } </code></pre> <p><strong>European Central Bank Feed</strong></p> <p>Docs: <a href="http://www.ecb.int/stats/exchange/eurofxref/html/index.en.html#dev" rel="nofollow noreferrer">http://www.ecb.int/stats/exchange/eurofxref/html/index.en.html#dev</a> Request: <a href="http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml" rel="nofollow noreferrer">http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml</a> Response: In response it will return a xml file with 28 currencies.</p> <p><strong><strike>Yahoo finance API</strike></strong></p> <p>(<em>UPDATE - November 2017</em>) Discontinued as of 2017-11-06 with message:</p> <blockquote> <p>It has come to our attenion that this service is being used in violation of the Yahoo Terms of Service. As such, the service is being discontinued. For all future markets and equities data research, please refer to finance.yahoo.com.</p> </blockquote> <p>Request: <a href="http://finance.yahoo.com/d/quotes.csv?e=.csv&amp;f=sl1d1t1&amp;s=USDINR=X" rel="nofollow noreferrer">http://finance.yahoo.com/d/quotes.csv?e=.csv&amp;f=sl1d1t1&amp;s=USDINR=X</a> In response it will return a csv file.</p> <p>[update] This CSV is being used by a jQuery plugin called Curry. Might be useful if you need more than just a CSV.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload