Skip to main content
GET
/
api
/
v4
/
public
/
assets
Asset Status List
curl --request GET \
  --url https://whitebit.com/api/v4/public/assets
{
  "BTC": {
    "name": "Bitcoin",
    "unified_cryptoasset_id": 1,
    "can_withdraw": true,
    "can_deposit": true,
    "min_withdraw": "0.001",
    "max_withdraw": "2",
    "maker_fee": "0.1",
    "taker_fee": "0.1",
    "min_deposit": "0.0001",
    "max_deposit": "0",
    "currency_precision": 18,
    "is_memo": false,
    "memo": {
      "deposit": false,
      "withdraw": false
    },
    "networks": {
      "deposits": [
        "BTC"
      ],
      "withdraws": [
        "BTC"
      ],
      "default": "BTC"
    },
    "limits": {
      "deposit": {
        "BTC": {
          "min": "0.001"
        }
      },
      "withdraw": {
        "BTC": {
          "min": "0.002"
        }
      }
    },
    "confirmations": {
      "BTC": 2
    }
  },
  "USDT": {
    "name": "Tether US",
    "unified_cryptoasset_id": 825,
    "can_withdraw": true,
    "can_deposit": true,
    "min_withdraw": "5",
    "max_withdraw": "0",
    "maker_fee": "0.1",
    "taker_fee": "0.1",
    "min_deposit": "0",
    "max_deposit": "0",
    "currency_precision": 6,
    "is_memo": false,
    "memo": {
      "deposit": false,
      "withdraw": false
    },
    "networks": {
      "deposits": [
        "ERC20",
        "TRC20",
        "OMNI",
        "BEP20"
      ],
      "withdraws": [
        "ERC20",
        "TRC20",
        "OMNI",
        "BEP20"
      ],
      "default": "ERC20"
    },
    "limits": {
      "deposit": {
        "ERC20": {
          "min": "5",
          "max": "1000"
        },
        "TRC20": {
          "min": "5"
        }
      },
      "withdraw": {
        "ERC20": {
          "min": "10",
          "max": "1000"
        },
        "TRC20": {
          "min": "10"
        }
      }
    },
    "confirmations": {
      "ERC20": 20,
      "TRC20": 20
    }
  }
}

Authentication

None. No authentication required.

Error codes

The endpoint uses standard error codes. See Error format for the response structure.

Notes

Asset type classification

The endpoint returns three structurally distinct asset types. Use the presence or absence of the confirmations and providers fields to classify each asset.
Asset typeconfirmations fieldproviders field
Crypto assetPresentAbsent
Fiat currencyAbsentPresent (may be empty)
Fiat payment methodAbsentAbsent
Crypto assets (e.g., BTC, ETH, USDT) include a confirmations object with required blockchain confirmation counts per network. Fiat currencies (e.g., EUR, USD, UAH) include a providers object listing available payment processors. The providers field is present even when the list is empty. Fiat payment methods (e.g., EUR_ADVCASH, USD_VISAMASTER) represent individual payment channels. These entries include neither confirmations nor providers. The network identifier in the networks field matches the asset ticker.

Response

Successful response

{key}
object