Currencies Endpoint

Returns a list of all featured currencies of currencyapi.


GET/v3/currencies

Supported Currencies

The endpoint returns a list of all supported currencies that are available through our other endpoints.

Optional attributes

  • Name
    currencies
    Type
    string
    Description

    A list of comma seperated currency codes which you want to get (EUR,USD,CAD) By default all available currencies will be shown

Response Structure

Our /currencies endpoint offers the following information:

Request

GET
/v3/currencies
curl -G https://api.currencyapi.com/v3/currencies \
    -H "apikey: YOUR-API-KEY"

Full Response

{
    "data": {
        "AED": {
            "symbol": "AED",
            "name": "United Arab Emirates Dirham",
            "symbol_native": "د.إ",
            "decimal_digits": 2,
            "rounding": 0,
            "code": "AED",
            "name_plural": "UAE dirhams"
        },
        "AFN": {
            "symbol": "Af",
            "name": "Afghan Afghani",
            "symbol_native": "؋",
            "decimal_digits": 0,
            "rounding": 0,
            "code": "AFN",
            "name_plural": "Afghan Afghanis"
        },
        "...": {}
    }
}