messages-questionGet supported

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

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

Endpoint: GET /api/v1/merchant/get_supportedarrow-up-right

Response:

{
    "success": true,
    "data": {
        "supported_fiats": [
            {
                "iso": "BRL",
                "name": "Brazilian Real"
                "exchange_rate": "6.364674"
            }
        ],v
        "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

    • exchange_rate: field shows the currency's value relative to EUR

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

triangle-exclamation

Last updated