Supported Chains

Overview of all blockchain networks supported by ChartInspect on-chain analytics.

ChartInspect provides on-chain analytics for six blockchains. Four use the UTXO model (Bitcoin, Cardano, Dogecoin, Litecoin), one uses the account model (Ethereum), and one is an oracle network (Chainlink). Each chain has a comprehensive set of metrics derived from raw blockchain data.

#Available Chains

ChainSymbolMetricsStatus
BitcoinBTC120Full coverage
EthereumETH111Full coverage
CardanoADA112Full coverage
DogecoinDOGE123Full coverage
LitecoinLTC117Full coverage
ChainlinkLINK92+Full coverage

#Discovering Available Metrics

Use the chains endpoint to see all available chains and their metric counts:

bash
curl -H "x-api-key: YOUR_API_KEY" \
  https://chartinspect.com/api/v1/chains

To see all available metrics for a specific chain:

curl -H "x-api-key: YOUR_API_KEY" \
  "https://chartinspect.com/api/v1/onchain/status?chain=bitcoin"

#Data Architecture

Each chain's on-chain data is stored in individual JSON files per metric, with a manifest that catalogs all available charts and their fields. Data is updated every 10 minutes from our blockchain indexers.

All chains share the same API interface. Simply change the chain query parameter:

bash
# Bitcoin MVRV
/api/v1/onchain/mvrv?chain=bitcoin

# Ethereum MVRV
/api/v1/onchain/mvrv?chain=ethereum

# Cardano MVRV
/api/v1/onchain/mvrv?chain=cardano

# Dogecoin MVRV
/api/v1/onchain/mvrv?chain=dogecoin

# Litecoin MVRV
/api/v1/onchain/mvrv?chain=litecoin

# Chainlink MVRV
/api/v1/onchain/mvrv?chain=chainlink

#Metric Availability by Chain

Not all metrics are available on every chain. Some metrics are specific to certain blockchain architectures. Use the /api/v1/onchain/status?chain=X endpoint to discover exactly which metrics are available for each chain.

#Complete Metric Lists

Each chain page includes the full list of all available metrics with their field names:

Was this page helpful?