---
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](/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 supported fiat currencies and limits.
  - `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 object)
    The list of cryptocurrencies supported by Revolut Ramp.
  - `crypto[].id` (string)
      The unique identifier of the crypto currency-blockchain pair.
      Should be used throughout the API to reference the specific crypto.
  - `crypto[].currency` (string)
      The [cryptocurrency code](https://en.wikipedia.org/wiki/List_of_cryptocurrencies).
  - `crypto[].blockchain` (enum)
      The cryptocurrency blockchain/network.
      Possible enum values:

      - `BITCOIN`
      - `RIPPLE`
      - `BITCOINCASH`
      - `LITECOIN`
      - `ETHEREUM`
      - `DOGECOIN`
      - `CARDANO`
      - `STELLAR`
      - `POLKADOT`
      - `SOLANA`
      - `AVALANCHE`
      - `EOS`
      - `TEZOS`
      - `DASH`
      - `ALGORAND`
      - `CELO`
      - `SMARTCHAIN`
      - `POLYGON`
      - `FANTOM`
      - `OPTIMISM`
      - `COSMOS`
      - `KUSAMA`
      - `ETHEREUMCLASSIC`
      - `ETHEREUMPOW`
      - `HEDERAHASHGRAPH`
      - `TRON`
      - `KAVA`
      - `NEAR`
      - `SONGBIRD`
      - `FLARE`
      - `CELESTIA`
      - `BASE`
  - `crypto[].smartContractAddress` (string, optional)
      The smart contract address. Returned only for tokens.
- `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 |
