# Get all currencies allowed for transfers

Returns all currencies available for creating transfers. Currency names are returned in English by default — pass an Accept-Language header to receive localized names.

Endpoint: GET /v1/currencies
Security: UserToken, PersonalToken

## Header parameters:

  - `Accept-Language` (string)
    Locale code for localizing currency names (e.g. de, fr, ja). Defaults to en (British English) if omitted or unsupported. See Language Support for the full list of supported languages.
    Example: "en"

  - `X-External-Correlation-Id` (string)
    Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
    Example: "f47ac10b-58cc-4372-a567-0e02b2c3d479"

## Response 200 fields (application/json):

  - `code` (string)
    Currency code (ISO 4217 Alphabetic Code).

  - `symbol` (string)
    The symbol of this currency.

  - `name` (string)
    Display name of this currency.

  - `countryKeywords` (array)
    Keywords associated with this currency.

  - `supportsDecimals` (boolean)
    Whether this currency supports decimal values or not.


