# Currencies Operations ## The Currencies resource Fields code Currency code (ISO 4217 Alphabetic Code) symbol The symbol of this currency name Display name of this currency countryKeywords Keywords associated with this currency supportsDecimals Whether this currency supports decimal values or not Currencies Object ```json [ { "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 }, ... ] ``` ## Get all currencies allowed for transfers **`GET /v1/currencies`** Get the list of allowed currencies that you can use when setting up your transfers. #### Response Returns a [currencies object](/api-reference/currencies#object). Example Request ```shell curl -X GET \ https://api.sandbox.transferwise.tech/v1/currencies \ -H 'Authorization: Bearer ' ```