Reputation: 1157
Anyone know of a way using AJAX that I can use tp display some currency exchange rates on a site I'm building?
Upvotes: 1
Views: 2446
Reputation: 7374
You could also use Yahoo!'s currency service. They have a web-based API you can use:
http://uk.finance.yahoo.com/currencies/converter/#from=GBP;to=EUR;amt=1
Upvotes: 1
Reputation: 19353
You can make use of Google API.. here is an article on the subject:
But if you are ready to pay for a service, you might want to have a look at http://www.exchangerate-api.com/
Upvotes: 0
Reputation: 22114
Use a site that has API to return currency rates preferably in JSON formats. Parse those and display on your site.
You may check out here.
Upvotes: 0