Available countries

This endpoint provides a comprehensive list of countries where bank accounts can be registered within the system, along with their supported currencies. The response includes standardized country codes and currency information essential for international transaction processing.

GET {{Environment_URL}}/v1/remittances/available-countries

Query Parameters

Parameter
Description
Type
Required
Example

currency

Filter countries by supported currency (ISO 4217 alpha-3 format)

String

No

EUR

country

Filter by specific country (ISO 3166-1 alpha-3 format)

String

No

USA

Response Format

The endpoint returns an array of country objects, each containing:

Field
Description
Type

info

Country identification information

Object

→ label

Country name in Portuguese

String

→ threeDigit

ISO 3166-1 alpha-3 country code

String

→ twoDigit

ISO 3166-1 alpha-2 country code

String

currencies

Array of supported currencies (ISO 4217 alpha-3 codes)

String[]

Response

[
    {
        "info": {
            "label": "Estados Unidos",
            "threeDigit": "USA",
            "twoDigit": "US"
        },
        "currencies": [
            "USD"
        ]
    },
    {
        "info": {
            "label": "França",
            "threeDigit": "FRA",
            "twoDigit": "FR"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Luxemburgo",
            "threeDigit": "LAX",
            "twoDigit": "LU"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Estônia",
            "threeDigit": "EST",
            "twoDigit": "EE"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Andorra",
            "threeDigit": "AND",
            "twoDigit": "AD"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Dinamarca",
            "threeDigit": "DNK",
            "twoDigit": "DK"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Lituânia",
            "threeDigit": "LTU",
            "twoDigit": "LT"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Cidade do Vaticano",
            "threeDigit": "VAT",
            "twoDigit": "VA"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Itália",
            "threeDigit": "ITA",
            "twoDigit": "IT"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Holanda",
            "threeDigit": "NLD",
            "twoDigit": "NL"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Reino Unido",
            "threeDigit": "GBR",
            "twoDigit": "GB"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Monaco",
            "threeDigit": "MCO",
            "twoDigit": "MC"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Chipre",
            "threeDigit": "CYP",
            "twoDigit": "CY"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Áustria",
            "threeDigit": "AUT",
            "twoDigit": "AT"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Eslováquia",
            "threeDigit": "SVK",
            "twoDigit": "SK"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Irlanda",
            "threeDigit": "IRL",
            "twoDigit": "IE"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Bélgica",
            "threeDigit": "BEL",
            "twoDigit": "BE"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Espanha",
            "threeDigit": "ESP",
            "twoDigit": "ES"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Finlândia",
            "threeDigit": "FIN",
            "twoDigit": "FI"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Malta",
            "threeDigit": "MLT",
            "twoDigit": "MT"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Portugal",
            "threeDigit": "PRT",
            "twoDigit": "PT"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "San Marino",
            "threeDigit": "SMR",
            "twoDigit": "SM"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Alemanha",
            "threeDigit": "DEU",
            "twoDigit": "DE"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Eslovênia",
            "threeDigit": "SVN",
            "twoDigit": "SI"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Grécia",
            "threeDigit": "GRC",
            "twoDigit": "GR"
        },
        "currencies": [
            "EUR"
        ]
    },
    {
        "info": {
            "label": "Letônia",
            "threeDigit": "LVA",
            "twoDigit": "LV"
        },
        "currencies": [
            "EUR"
        ]
    }
]