TRONSCAN — blockchain explorer and data platform

TRONSCAN is more than a blockchain browser. It is TRON's core on-chain data infrastructure, exposing the same chain state through a Web UI, TRONSCAN API, MCP server, pre-built SKILLS, and a CLI — comparable to Etherscan or Solscan in other ecosystems.

A blockchain explorer is essential infrastructure for any transparent decentralized network — it lets anyone observe on-chain activity in real time without running their own node. TRONSCAN (tronscan.org) plays this role for TRON, comparable to Etherscan on Ethereum or Solscan on Solana. It is the most widely used blockchain explorer on TRON, fielding daily queries from wallets, exchanges, DApps, compliance teams, and research firms.

What makes it stand out is that it is more than a browser. As TRON's core on-chain data platform, the same data is exposed through five distinct access modes — Web UI, TRONSCAN API, MCP server, SKILLS, and CLI — covering the full spectrum from manual look-ups to AI agent calls.

📘

Prerequisites


Quick orientation

Five ways to interact with TRONSCAN, matched to common roles:

Access modeBest forWhere to start
Web interfaceEnd users, regular look-up, governance participantstronscan.org
TRONSCAN APIDApps, dashboards, exchanges, analytics backendsdocs.tronscan.org / API
MCP serverAI agents and conversational tooling (Claude, Cursor)docs.tronscan.org / MCP
SKILLSData analysts, researchers, tradersdocs.tronscan.org / SKILLS
CLIScripts, automation, infrastructure integrationdocs.tronscan.org / CLI

All five surfaces read the same underlying TRON chain data and support Mainnet, Shasta testnet, and Nile testnet.


Web interface

The graphical entry point at tronscan.org is what most users mean when they say "TRONSCAN". It exposes every dimension of TRON chain state — blocks, transactions, accounts, smart contracts, tokens, Super Representatives, on-chain parameters, and historical analytics — through a unified search and detail UI.

You can search by block height, transaction ID, base58 address, contract address, token symbol, or SR name. The detail views show timestamps, status, fee composition, resource consumption, source code for verified contracts, holder counts and price data for tokens, vote counts and brokerage rates for Super Representatives, and live values for every modifiable network parameter. Historical charts cover transaction volume, on-chain activity, account growth, and other operational metrics.

Beyond raw browsing, TRONSCAN integrates with TronLink so you can connect your wallet to trade, vote, or sign governance actions directly from the explorer. There are also guided forms for issuing TRC-10 and TRC-20 tokens.


Programmatic access

TRONSCAN exposes the same chain data shown in the Web UI through four programmatic surfaces. Production integrations need an API key for any but the lightest usage — see API keys and getting started.

TRONSCAN API

The primary programmatic surface. Over 100 endpoints across categories including account, contract, transactions, block, tokens, Super Representative (SR), homepage statistics, wallet, and deep analysis. Beyond raw chain data, TRONSCAN exposes two advanced services:

  • Protocol Revenue Service — revenue analytics across DeFi protocols on TRON
  • Security Service — risk scoring for addresses and contracts, useful for compliance and pre-trade screening

Get an API key and explore the catalog at docs.tronscan.org / API.

MCP server

TRONSCAN ships an MCP server that exposes its data through the standard Model Context Protocol. AI agents — Claude, Cursor, and other MCP-capable clients — can call TRONSCAN tools through natural language, getting structured chain data back without writing API client code.

For the broader picture of MCP on TRON, including other ecosystem MCP servers, see AI Agents & MCP.

SKILLS

Nine pre-built analytical tools that wrap common research workflows on top of the TRONSCAN API. Each SKILL is a curated combination of endpoints and post-processing tuned for a specific question:

  • Token Scanner, Stablecoin Analysis — token-level risk and supply checks
  • Account Profiler, Transaction Info, Block Info — detail look-ups with enrichment
  • Contract Analysis — bytecode, ABI, and call-pattern analysis
  • Token List, Data Insights, Realtime Network — broader analytics
  • Search, SR Governance — search and governance research

Browse the full catalog at docs.tronscan.org / SKILLS.

CLI

A command-line tool that wraps the TRONSCAN API for scripts and infrastructure integration. Use it in CI/CD, monitoring dashboards, or local data-pull pipelines where calling a CLI is easier than embedding an HTTP client.

docs.tronscan.org / CLI


Network endpoints

NetworkWeb URLTRONSCAN API base
Mainnettronscan.orghttps://apilist.tronscanapi.com
Shasta testnetshasta.tronscan.orgper docs.tronscan.org
Nile testnetnile.tronscan.orgper docs.tronscan.org

For the TRON network site itself, see tron.network.


Why this matters

TRONSCAN is part of the TRON ecosystem's transparency layer. Users verify transactions and track balances; developers debug contracts and inspect event logs; analysts study network activity and SR performance; trading firms screen counterparties; AI agents pull on-chain context into conversational workflows. Different roles need different access modes, and TRONSCAN's five surfaces cover all of them while keeping a single source of chain truth.

For the TRON developer ecosystem, this means you can choose the mode that fits the integration cost you can afford — point-and-click for ad-hoc research, TRONSCAN API for production, MCP for AI workflows, SKILLS for analysis without code, CLI for scripts.


Related resources