# Currencies Endpoint

Returns all our supported currencies. The API supports 33 currencies — see the full currency list (opens new window).

Request Method: GET
Request URL: https://api.freecurrencyapi.com/v1/currencies

# Request Parameters

Parameter Type Mandatory Description
apikey string Your API Key
currencies string A list of comma-separated currency codes which you want to get (EUR,USD,CAD)
By default all available currencies will be shown
as_html boolean Return the currency list as an HTML table instead of JSON

# Example Request

curl "https://api.freecurrencyapi.com/v1/currencies?currencies=EUR,GBP" \
    -H "apikey: YOUR-APIKEY"

# Sample Response

{
    "data": {
        "EUR": {
            "symbol": "€",
            "name": "Euro",
            "symbol_native": "€",
            "decimal_digits": 2,
            "rounding": 0,
            "code": "EUR",
            "name_plural": "Euros",
            "type": "fiat"
        },
        "GBP": {
            "symbol": "£",
            "name": "British Pound Sterling",
            "symbol_native": "£",
            "decimal_digits": 2,
            "rounding": 0,
            "code": "GBP",
            "name_plural": "British pounds sterling",
            "type": "fiat"
        }
    }
}

Because the example request filters to currencies=EUR,GBP, exactly those two entries are returned; omit the currencies parameter to receive all 33 supported currencies.