Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Database: Currencies By CountryCode?

Where do I get a list of currencies along with country code?

Example

Code,    Currency Name,  Country,    Format,     Decimal Points,     Currency Regime,    Major Unit,     Minor Unit,     Equivalence,
USD,    US Dollar,  United States,  $#,###.##,  2,  float,  dollar, cents,  100 cents = dollar

REF: http://www.oanda.com/currency/currency-code?srccont=rightnav

<--- this is perfect, however they do not supply a database to download?

like image 631
001 Avatar asked Feb 22 '12 10:02

001


2 Answers

From Wikipedia: http://en.wikipedia.org/wiki/List_of_circulating_currencies

Data from ISO: ISO 4217 currency and funds name and code elements
With the data in XLS and XML format.

like image 133
Philip Fourie Avatar answered Sep 24 '22 01:09

Philip Fourie


You can get a list of country codes to currency codes from http://country.io/currency.json. Here's a sample extract:

...
"US": "USD",
"UY": "UYU",
"UZ": "UZS",
"VA": "EUR",
"VC": "XCD",
...
like image 24
Ben Dowling Avatar answered Sep 25 '22 01:09

Ben Dowling