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

# Retrieve sell configuration

Use this endpoint for the sell (off-ramp) flow.
Retrieve the Revolut Ramp configuration for selling crypto for fiat, such as supported countries, fiat currencies and limits, crypto tokens, and payout methods.

Use the returned values to check eligibility and to populate the parameters required by [`/sell-quote`](https://developer.revolut.com/docs/api/crypto-ramp#retrieve-a-sell-order-quote) and [`/sell`](https://developer.revolut.com/docs/api/crypto-ramp#retrieve-a-sell-redirect-url).

## Endpoint

GET `/sell-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 sell configuration version.
- `countries` (array of string)
    The list of customer countries supported by Revolut Ramp for selling crypto – for your customer to be able to sell crypto via Revolut Ramp, they must be resident in one of those countries.
- `fiat` (array of object)
    The supported payout currencies and limits.
  - `fiat[].currency` (string)
      The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the supported payout currency.
  - `fiat[].min_limit` (number)
      The minimum allowed fiat payout amount.
  - `fiat[].max_limit` (number)
      The maximum allowed fiat payout amount.
- `crypto` (array of object)
    The list of cryptocurrencies supported by Revolut Ramp for selling.
  - `crypto[].id` (string)
      The unique identifier of the crypto currency-blockchain pair.
      Use it throughout the sell 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.
- `payout_methods` (array of enum)
    The list of available fiat payout 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 |
