Currency Information
Get currency details including symbol, decimal digits, and countries by ISO code
/v1/geo/currency-info
curl "https://geo.toolkitapi.io/v1/geo/currency-info?code=EUR"
import httpx
resp = httpx.get(
"https://geo.toolkitapi.io/v1/geo/currency-info?code=EUR",
)
print(resp.json())
const resp = await fetch("https://geo.toolkitapi.io/v1/geo/currency-info?code=EUR", {
});
const data = await resp.json();
console.log(data);
# See curl example
{
"code": "EUR",
"name": "Euro",
"symbol": "€",
"symbol_native": "€",
"decimal_digits": 2,
"countries": ["DE", "FR", "IT", "ES", "NL", "BE", "AT", "PT", "FI", "IE", "GR"]
}
Try It Live
Description
How to Use
1. Pass the 3-letter ISO 4217 currency code (e.g. `USD`, `EUR`, `GBP`) in the `code` parameter.
2. Send a GET request and use the response to format currency values correctly.
3. Use `decimal_digits` to determine rounding precision and `symbol` for display formatting.
About This Tool
Use Currency Information to retrieve details about any currency by its ISO 4217 code. The response includes the currency name, symbol, native symbol, number of decimal places, and a list of countries that use it.
This is perfect for building payment forms, formatting monetary values, or validating currency codes in financial applications.
Why Use This Tool
- Payment forms — Display the correct currency symbol and decimal precision
- Internationalisation — Format monetary values according to currency rules
- Validation — Verify currency codes in API requests or database records
- Country mapping — Determine which countries use a given currency
Frequently Asked Questions
What happens if the currency code is not found?
Are cryptocurrency codes supported?
How many currencies are in the database?
Start using Currency Information now
Get your free API key and make your first request in under a minute.