Options

New minimum_deposit attribute for crypto_config

Dear developers,

We’re adding a new optional property, minimum_deposit, to the response of the crypto_config API call. This is the acceptable minimum deposit amount for a particular currency. Please note that minimum_deposit is only applicable for some currencies.

This attribute is implemented to prevent loss of funds when clients enter a deposit amount that’s too low.

Note: While the “minimum_withdrawal” value is based on USD, the “minimum_deposit” value is based on the corresponding cryptocurrency.

An example of the request

{
  "crypto_config": 1
}

An example of the response

{
  "crypto_config": {
    "currencies_config": {
      "BTC": {
        "minimum_withdrawal": 0.00121339
      },
      "ETH": {
        "minimum_withdrawal": 0.03151343
      },
      "LTC": {
        "minimum_withdrawal": 0.07791207
      },
      "USDC": {
        "minimum_withdrawal": 99.99
      },
      "UST": {
        "minimum_withdrawal": 24.97
      },
      "eUSDT": {
        "minimum_withdrawal": 99.9,
        "minimum_deposit": 1
      }
    }
  },
  "echo_req": {
    "crypto_config": 1
  },
  "msg_type": "crypto_config"
}

If you have any questions, write to us at api-support@deriv.com.

Sign In or Register to comment.