Skip to content

Currencies

Retrieve the list of currencies supported for transfers, including currency codes and display names.

Operations

Get all currencies allowed for transfers

Request

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

Security
UserToken or PersonalToken
Headers
Accept-Languagestring

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-Idstring, (uuid), <= 36 characters

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
curl -i -X GET \
  https://api.wise.com/2026Q3/currencies \
  -H 'Accept-Language: en' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479'

Responses

List of currencies allowed for transfers.

Headers
X-External-Correlation-Idstring, (uuid), <= 36 characters

Echoed back when X-External-Correlation-Id was included in the request. Learn more.

Example:"f47ac10b-58cc-4372-a567-0e02b2c3d479"
x-trace-idstring

Unique trace identifier assigned by Wise. Useful when contacting support about a specific request.

Example:"fba501b6d453b96789f52338f019341f"
Bodyapplication/json
Array [
codestring

Currency code (ISO 4217 Alphabetic Code).

symbolstring

The symbol of this currency.

namestring

Display name of this currency.

countryKeywordsArray of strings

Keywords associated with this currency.

supportsDecimalsboolean

Whether this currency supports decimal values or not.

]
Response
[ { "code": "AUD", "symbol": "A$", "name": "Australian dollar", "countryKeywords": [ "AUD", "AU", "Australia", "aus" ], "supportsDecimals": true }, { "code": "JPY", "symbol": "¥", "name": "Japanese yen", "countryKeywords": [ "JPY", "JP", "Japan", "jpn" ], "supportsDecimals": false } ]