> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cryptomate.me/llms.txt
> Use this file to discover all available pages before exploring further.

# List ramp-on fiat assets

> List supported fiat currencies for ramp-on operations.

Retrieves the list of supported fiat currencies for ramp-on operations. Currently supports USD, EUR, MXN, BRL, GBP, and COP. Requires an API key with access level 1 or higher.

## Response

Returns an array of fiat asset objects.

<ResponseField name="name" type="string">
  Full name of the fiat currency.
</ResponseField>

<ResponseField name="code" type="string">
  Currency code.
</ResponseField>

<ResponseField name="symbol" type="string">
  Currency symbol.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.cryptomate.me/virtual-wallets/config/ramp-on/fiat-assets/list" \
    -H "x-api-key: $CRYPTOMATE_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  [
    { "name": "United States Dollar", "code": "USD", "symbol": "$" },
    { "name": "Euro", "code": "EUR", "symbol": "€" },
    { "name": "Mexican Peso", "code": "MXN", "symbol": "$" },
    { "name": "Brazilian Real", "code": "BRL", "symbol": "R$" },
    { "name": "British Pound", "code": "GBP", "symbol": "£" },
    { "name": "Colombian Peso", "code": "COP", "symbol": "$" }
  ]
  ```
</ResponseExample>
