Supported Currencies

Supported currencies for deposits and withdrawals

Supported currencies for deposits and withdrawals with autoconvert to/from FIAT

The list of supported currencies and their operations is also available via API Endpoint:

get
Authorizations
Responses
200Success
application/json
get
GET /assets/supported HTTP/1.1
Host: tunell-gateway.ecng.digital
X-API-KEY: YOUR_API_KEY
Accept: */*
{
  "supportedCurrencies": [
    {
      "currency": "BTC",
      "currencyName": "Bitcoin",
      "decimals": "8",
      "transactionTypes": [
        {
          "deposit": {
            "supported": true
          },
          "withdrawal": {
            "supported": true
          },
          "incoming": {
            "supported": true,
            "exchangeTo": [
              "USD",
              "EUR",
              "USDT_ERC20"
            ]
          },
          "outgoing": {
            "supported": true,
            "exchangeFrom": [
              "USD",
              "EUR",
              "USDT_ERC20"
            ]
          }
        }
      ]
    }
  ]
}

Last updated