# 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 /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](/guides/developer/language-support) for the full list of supported languages.

  - `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](/guides/developer/headers/correlation-id).

## 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.

