# Get supported

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

**Endpoint:**\
[`GET /api/v1/merchant/get_supported`](http://widget.swapped.com/api/v1/merchant/get_supported)

Respons&#x65;**:**

```json
{
    "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.
  * `iso`Standardised 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&#x20;
  * `name` : Name of the crypto
  * `iso`: The standardised short code for the crypto
  * `type`: Whether if it's a token or a coin &#x20;
  * `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.
  * `iso`The standardised short codes for the countries.
  * `name` : Name of the country
  * `currency`: Default currency for that country.

{% hint style="danger" %}
All <kbd><mark style="color:red;">/merchant/<mark style="color:red;"></kbd> endpoints are subject to a global rate limit of **100 requests per second**. Exceeding this limit may result in throttling.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.swapped.com/swapped-ramp/endpoints/misc.-endpoints/get-supported.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
