Skip to content

List All Tokens

GET /v2/tokens

Returns

FieldTypeDescription
idStringThe unique identifier for the token.
nameStringThe name of the token.
symbolStringThe symbol of the token.
icon_urlStringThe URL to the icon of the token.
deploymentsArrayThe deployments tokens.
deployments[].chainStringThe blockchain the token is deployments on.
deployments[].addressStringThe address of the token.
deployments[].decimalsNumberThe number of decimals the token has.

Example

Request

cURL
curl "https://api.bmining.pro/v2/tokens" \
  -X GET \
  -H "Content-Type: application/json" \
 --data-urlencode "api_key=YOUR_API_KEY"

Response

universal-token-list.json
[
  {
    "id": "bitcoin",
    "name": "Bitcoin",
    "symbol": "BTC",
    "icon_url": "https://token-icons.s3.amazonaws.com/btc.png",
    "deployments": [
      {
        "chain": "bitcoin",
        "address": "0",
        "decimals": 8
      }
    ]
  },
  {
    "id": "ethereum",
    "name": "Ethereum",
    "symbol": "ETH",
    "icon_url": "https://token-icons.s3.amazonaws.com/eth.png",
    "deployments": [
      {
        "chain": "ethereum",
        "address": "0",
        "decimals": 18
      },
      {
        "chain": "ethereum",
        "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
        "decimals": 18
      }
    ]
  },
  {
    "id": "bnb",
    "name": "BNB",
    "symbol": "BNB",
    "icon_url": "https://token-icons.s3.amazonaws.com/bnb.png",
    "deployments": [
      {
        "chain": "bnb",
        "address": "0",
        "decimals": 18
      },
      {
        "chain": "bnb",
        "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c",
        "decimals": 18
      },
      {
        "chain": "ethereum",
        "address": "0xB8c77482e45F1F44dE1745F52C74426C631bDD52",
        "decimals": 18
      }
    ]
  },
  {
    "id": "usdt",
    "name": "Tether USD",
    "symbol": "USDT",
    "icon_url": "https://token-icons.s3.amazonaws.com/usdt.png",
    "deployments": [
      {
        "chain": "ethereum",
        "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "decimals": 6
      },
      {
        "chain": "bnb",
        "address": "0x55d398326f99059ff775485246999027b3197955",
        "decimals": 18
      }
    ]
  },
  {
    "id": "usdc",
    "name": "USD Coin",
    "symbol": "USDC",
    "icon_url": "https://token-icons.s3.amazonaws.com/usdc.png",
    "deployments": [
      {
        "chain": "ethereum",
        "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
        "decimals": 6
      },
      {
        "chain": "bnb",
        "address": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d",
        "decimals": 18
      }
    ]
  }
]

Miscellaneous