Dozens of Supported Blockchains

CoinStats API supports dozens of blockchain networks, providing comprehensive wallet tracking across the entire cryptocurrency ecosystem. From established Layer 1 blockchains to emerging protocols, monitor your assets everywhere.

Major Layer 1 Blockchains

Cardano

cardano - Proof-of-stake smart contract platform

Litecoin

litecoin - Digital silver to Bitcoin’s gold

Dogecoin

dogecoin - Popular meme-based cryptocurrency

Bitcoin Cash

bitcoin-cash - Bitcoin fork with larger blocks

Stellar

stellar - Cross-border payment network

Tron

tron - High-throughput blockchain platform

Layer 2 & Scaling Solutions

Lightning Network

lightning - Bitcoin Layer 2 payment channels

Polygon zkEVM

polygon-zkevm - Zero-knowledge Ethereum scaling

StarkNet

starknet - ZK-rollup scaling solution

zkSync Era

zksync - Matter Labs ZK scaling platform

Enterprise & Institutional Chains

Cosmos

cosmos - Internet of blockchains ecosystem

Polkadot

polkadot - Multi-chain interoperability protocol

Kusama

kusama - Polkadot’s experimental network

Near Protocol

near - Developer-friendly sharded blockchain

Get Supported Chains

Retrieve the complete list of supported blockchains:
curl -H "X-API-KEY: your-api-key" \
  "https://openapiv1.coinstats.app/wallet/blockchains"
1 credit per request

Example Response

[
  {
    "name": "Cardano",
    "connectionId": "cardano",
    "chain": "cardano",
    "icon": "https://static.coinstats.app/coins/cardano.png"
  },
  {
    "name": "Litecoin",
    "connectionId": "litecoin", 
    "chain": "litecoin",
    "icon": "https://static.coinstats.app/coins/litecoin.png"
  },
  {
    "name": "Tron",
    "connectionId": "tron",
    "chain": "tron", 
    "icon": "https://static.coinstats.app/coins/tron.png"
  }
]

Universal Wallet Tracking

Track wallets across multiple non-EVM chains simultaneously:
curl -H "X-API-KEY: your-api-key" \
  "https://openapiv1.coinstats.app/wallet/balance?address=addr1qxy2lpan99fcnf2du5et5gw9qz8w8ky8f8m4lnhfg2r6e9a4zhk3ey7m8f4n8k7e8d5u8m8h3g2f9b8z2y3r6v9x8s&connectionId=cardano"

Chain-Specific Features

Cardano (ADA)

curl -H "X-API-KEY: your-api-key" \
  "https://openapiv1.coinstats.app/wallet/transactions?address=addr1qxy2lpan99fcnf2du5et5gw9qz8w8ky8f8m4lnhfg2r6e9a4zhk3ey7m8f4n8k7e8d5u8m8h3g2f9b8z2y3r6v9x8s&connectionId=cardano&types=executed"

Tron (TRX)

curl -H "X-API-KEY: your-api-key" \
  "https://openapiv1.coinstats.app/wallet/balance?address=TLyqzVGLV1srkB7dToTAEqgDSfPtXRJZYH&connectionId=tron"

Litecoin (LTC)

curl -H "X-API-KEY: your-api-key" \
  "https://openapiv1.coinstats.app/wallet/transactions?address=LQTpS7F9y5xPMxbNGqPjRzPz8k7hGa9Xqm&connectionId=litecoin"

Comprehensive Chain List

CategoryChainsCount
Layer 1 BlockchainsBitcoin, Ethereum, Cardano, Solana, Polkadot, Cosmos, Near, Algorand8+
EVM CompatiblePolygon, BSC, Arbitrum, Optimism, Avalanche, Fantom, Base20+
Layer 2 SolutionsLightning, Polygon zkEVM, StarkNet, zkSync, Immutable X10+
Enterprise ChainsTron, Stellar, Ripple, Hedera, VeChain8+
Meme & CommunityDogecoin, Shiba Inu, Litecoin5+
Privacy CoinsMonero, Zcash, Dash3+
Use the /wallet/blockchains endpoint to get the current complete list, as we continuously add support for new chains.

Multi-Chain Portfolio Management

Unified Dashboard Example

// Build a comprehensive multi-chain portfolio tracker
async function getMultiChainPortfolio(wallets) {
  const chains = await fetch('https://openapiv1.coinstats.app/wallet/blockchains', {
    headers: { 'X-API-KEY': 'your-api-key' }
  }).then(r => r.json());
  
  const portfolioData = {};
  
  for (const wallet of wallets) {
    const balance = await fetch(`https://openapiv1.coinstats.app/wallet/balance?address=${wallet.address}&connectionId=${wallet.chain}`, {
      headers: { 'X-API-KEY': 'your-api-key' }
    }).then(r => r.json());
    
    portfolioData[wallet.chain] = balance;
  }
  
  return portfolioData;
}

// Usage
const wallets = [
  { chain: 'cardano', address: 'addr1qxy2lpan99fcnf2du5et5gw9qz8w8ky8f8m4lnhfg2r6e9a4zhk3ey7m8f4n8k7e8d5u8m8h3g2f9b8z2y3r6v9x8s' },
  { chain: 'litecoin', address: 'LQTpS7F9y5xPMxbNGqPjRzPz8k7hGa9Xqm' },
  { chain: 'tron', address: 'TLyqzVGLV1srkB7dToTAEqgDSfPtXRJZYH' }
];

const portfolio = await getMultiChainPortfolio(wallets);

Cross-Chain Analytics

# Analyze holdings across all supported chains
import asyncio
import aiohttp

async def analyze_cross_chain_holdings(addresses):
    async with aiohttp.ClientSession() as session:
        tasks = []
        
        for chain, address in addresses.items():
            url = f'https://openapiv1.coinstats.app/wallet/balance'
            params = {'address': address, 'connectionId': chain}
            headers = {'X-API-KEY': 'your-api-key'}
            
            tasks.append(session.get(url, params=params, headers=headers))
        
        responses = await asyncio.gather(*tasks)
        
        total_value = 0
        holdings = {}
        
        for i, response in enumerate(responses):
            chain = list(addresses.keys())[i]
            data = await response.json()
            chain_value = sum(item['amount'] * item['price'] for item in data)
            holdings[chain] = {'value': chain_value, 'assets': data}
            total_value += chain_value
        
        return {'total_value': total_value, 'holdings': holdings}

# Usage
addresses = {
    'cardano': 'addr1qxy2lpan99fcnf2du5et5gw9qz8w8ky8f8m4lnhfg2r6e9a4zhk3ey7m8f4n8k7e8d5u8m8h3g2f9b8z2y3r6v9x8s',
    'litecoin': 'LQTpS7F9y5xPMxbNGqPjRzPz8k7hGa9Xqm',
    'dogecoin': 'DH5yaieqoZN36fDVciNyRueRGvGLR3mr7L',
    'tron': 'TLyqzVGLV1srkB7dToTAEqgDSfPtXRJZYH'
}

portfolio = await analyze_cross_chain_holdings(addresses)

Use Cases

DeFi Yield Farming

Track yield farming across dozens of chains and protocols

Institutional Custody

Monitor corporate holdings across multiple blockchain networks

Cross-Chain Arbitrage

Identify arbitrage opportunities between different chains

Risk Diversification

Spread risk across multiple blockchain ecosystems

Sample Addresses by Chain

ChainAddress FormatExample
Cardanoaddr1...addr1qxy2lpan99fcnf2du5et5gw9qz8w8ky8f8m4lnhfg2r6e9a4zhk3ey7m8f4n8k7e8d5u8m8h3g2f9b8z2y3r6v9x8s
LitecoinL... or M...LQTpS7F9y5xPMxbNGqPjRzPz8k7hGa9Xqm
DogecoinD...DH5yaieqoZN36fDVciNyRueRGvGLR3mr7L
TronT...TLyqzVGLV1srkB7dToTAEqgDSfPtXRJZYH
StellarG...GAHK7EEG2WWHVKDNT4CEQFZGKF2LGDSW2IVM4S5DP42RBW3K6BTODB4A
Cosmoscosmos1...cosmos1v9jxgvac5dvy6ks6w2rx2ddhd8gke7g3p6n4z4
Chain-specific addresses must match the exact format for each blockchain. Incorrect address formats will result in API errors.
Growing Network: We continuously add support for new blockchains. Check /wallet/blockchains regularly for newly supported chains.
  • Documentation: This site contains comprehensive API documentation
  • Telegram Chat: For quick help and to connect with other developers, join our API Support Telegram group
  • Email Support: You can reach us directly at api.support@coinstats.app for personalized assistance.