> For the complete documentation index, see [llms.txt](https://docs.swapped.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.swapped.com/swapped-ramp/endpoints/misc.-endpoints/get-supported.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
