Available Currencies

Retrieve a list of all supported cryptocurrencies and their compatible networks

Endpoint

GET/v1/currencies

This endpoint does not require authentication

Request Example

curl -X GET "https://api.mintmove.io/v1/currencies" \
  -H "Content-Type: application/json"

Response Example

{
  "success": true,
  "data": {
    "BTC": {
      "networks": ["BTC"],
      "name": "Bitcoin",
      "logo": "https://api.mintmove.io/assets/btc.png",
      "color": "#F7931A",
      "precision": 8,
      "min_amount": 0.0001,
      "max_amount": 10.0,
      "enabled": true,
      "priority": 1
    },
    "USDT": {
      "networks": ["ERC20", "TRC20", "BEP20"],
      "name": "Tether",
      "logo": "https://api.mintmove.io/assets/usdt.png",
      "color": "#26A17B",
      "precision": 6,
      "min_amount": 1.0,
      "max_amount": 100000.0,
      "enabled": true,
      "priority": 1
    },
    "BNB": {
      "networks": ["BEP20"],
      "name": "BNB",
      "logo": "https://api.mintmove.io/assets/bnb.png",
      "color": "#F3BA2F",
      "precision": 8,
      "min_amount": 0.01,
      "max_amount": 1000.0,
      "enabled": true,
      "priority": 2
    }
  }
}

Response Fields

FieldTypeDescription
networksArraySupported blockchain networks (e.g., ERC20, TRC20, BEP20)
nameStringFull currency name
logoStringURL to currency logo image
colorStringBrand color in hex format
precisionNumberDecimal precision for amounts
min_amountNumberMinimum exchange amount
max_amountNumberMaximum exchange amount
enabledBooleanWhether the currency is currently available
priorityNumberDisplay priority (1 = highest, used for sorting)

Supported Networks

  • ERC20 - Ethereum network (Ethereum mainnet)
  • TRC20 - Tron network (Tron mainnet)
  • BEP20 - Binance Smart Chain (BSC mainnet)
  • BTC - Bitcoin native network
  • ETH - Ethereum native network
  • BNB - Binance Coin native network
  • SOL - Solana native network
  • TRX - Tron native network

Usage Notes

  • The response is cached for 5 minutes. Currency availability may change, so refresh periodically for production applications.
  • Only currencies with enabled: true are available for exchange.
  • Use the priority field to sort currencies in your UI (lower numbers = higher priority).
  • Network compatibility is important - ensure you select compatible networks when creating orders.