---
api: 'Crypto Ramp API'
---

# Retrieve configuration

Retrieve Revolut Ramp configuration, such as available fiat currencies and crypto tokens with corresponding limits and supported countries.

For more information, see the guides: [Leverage the Crypto Ramp API -> Get your configuration details](https://developer.revolut.com/docs/guides/crypto-ramp/tutorials/use-the-api#get-your-configuration-details).

## Endpoint

GET `/config`

## Parameters

### header parameters

- `X-API-KEY` (any, optional)
  Your API key that you received during integration setup. 
  For more information, see the **Authorization** section.

## Returns

### 200

OK

#### Response attributes

- `version` (string)
    The Revolut Ramp configuration version.
- `countries` (array of string)
    The list of client countries supported by Ramp – for your customer to be able to use Revolut Ramp, they must be resident in one of those countries.
- `fiat` (array of object)
    The list of fiat currencies supported by Revolut Ramp.
  - `fiat[].currency` (string)
      The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the supported currency.
  - `fiat[].min_limit` (number)
      The minimum allowed amount.
  - `fiat[].max_limit` (number)
      The maximum allowed amount.
- `crypto` (array of string)
    The list of cryptocurrencies supported by Revolut Ramp.
- `feePercentages` (array of number, optional)
    The list of fee percentages that can be applied for the order as partner fee.
- `payment_methods` (array of enum)
    The list of available payment methods.

## Error responses

| HTTP status code | Description |
| --- | --- |
| 401 | Unauthorized |
| 429 | Too Many Requests |
| 500 | Server error  An unexpected error occurred. |
| 503 | The endpoint is disabled by Kill Switch |
