Get supported

Need help with your integration? Click here to chat with our custom GPT for instant answers.

The endpoint returns all standardised codes (ISOs) for supported FIAT currencies, cryptocurrencies, and countries.

Endpoint: GET /api/v1/merchant/get_supported

Response:

{
    "success": true,
    "data": {
        "supported_fiats": [
            {
                "iso": "BRL",
                "name": "Brazilian Real"
            }
        ],
        "supported_cryptos": [
            {
                "id": 35,
                "name": "USDC (POL)",
                "iso": "USDC",
                "type": "token",
                "network": "polygon",
                "network_fee": "0",
                "tags": [
                    "USDC_POLYGON"
                ]
            }
        ],
        "supported_countries": [
            {
                "iso": "US",
                "name": "United States",
                "currency": "USD"
            }
        ]
    }
}

Response Definition:

  • supported_fiats : Supported FIAT currencies.

    • isoStandardised short codes for the FIAT currency.

    • name : Name of the currency

  • supported_cryptos : Supported cryptocurrencies

    • id : The ID of the cryptocurrency

    • name : Name of the crypto

    • iso: The standardised short code for the crypto

    • type: Whether if it's a token or a coin

    • network: The network the crypto belongs to.

    • network_fee : The network fee in EUR.

    • tags: The value(s) merchants can use as currency when initialising an iframe.

  • supported_countries : The supported countries.

    • isoThe standardised short codes for the countries.

    • name : Name of the country

    • currency: Default currency for that country.

Last updated