🌍

Currency Information

Get currency details including symbol, decimal digits, and countries by ISO code

GET 1 credit /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
Response 200 OK
{
  "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

Live Demo

Description

Get currency details including symbol, decimal digits, and countries by ISO code

How to Use

1

1. Pass the 3-letter ISO 4217 currency code (e.g. `USD`, `EUR`, `GBP`) in the `code` parameter.

2

2. Send a GET request and use the response to format currency values correctly.

3

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

Frequently Asked Questions

What happens if the currency code is not found?
A 404 error is returned indicating the code was not found in the database.
Are cryptocurrency codes supported?
No. This endpoint covers fiat currencies defined in the ISO 4217 standard only.
How many currencies are in the database?
The database includes 150+ active ISO 4217 currency codes covering all major and most minor fiat currencies.

Start using Currency Information now

Get your free API key and make your first request in under a minute.