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.iso
Standardised short codes for the FIAT currency.name
: Name of the currency
supported_cryptos
: Supported cryptocurrenciesid
: The ID of the cryptocurrencyname
: Name of the cryptoiso
: The standardised short code for the cryptotype
: Whether if it's a token or a coinnetwork
: 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.iso
The standardised short codes for the countries.name
: Name of the countrycurrency
: Default currency for that country.
Last updated