Most block explorers are built around transactions. You paste a hash, you get a receipt. The Ethplorer Ethereum explorer starts somewhere else: with the tokens. Open any address on ethplorer.io and the first thing you see is not a list of hashes but a portfolio, with ETH and every ERC-20 token valued in dollars, sorted by size and charted over time. That single design choice explains both why so many traders and token teams love it and why developers rarely use it as their only explorer.
We put Ethplorer through real tasks: checking wallets, researching token distributions, exporting histories and hammering the public API. Below is what we found, with numbers taken from the live service on 24 September 2026.
What Ethplorer is and who runs it
Ethplorer went live in 2016, built by the team behind the Everex project at a time when ERC-20 tokens were new and token data was hard to read on general-purpose explorers. Its original promise, still visible in the open-source repository, was simple: a viewer of Ethereum tokens and transactions. That repository is published under the Apache 2.0 licence, but it has not been updated since October 2023, so the live site has clearly moved on from the public code. Do not expect to self-host today’s Ethplorer from GitHub.
The service has grown sideways rather than deeper. The same engine now powers sister explorers for BNB Chain (Binplorer), Linea and Blast, and Ethplorer itself covers the Sepolia and Hoodi testnets alongside mainnet. Browsing is free and needs no account; registering gets you a personal API key and keeps your tags, notes and watch settings in one profile.
The Ethplorer Ethereum address explorer
The address page is Ethplorer’s best feature. We tested it with vitalik.eth (0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045). The header shows the ETH balance, 6.72 ETH on the day we checked, with its dollar value and the 24-hour, 7-day and 30-day price change. Below it sits the full token list with balances, prices and each token’s share of the total. A chart plots the wallet’s historical value in USD, so you can see at a glance when a whale moved funds out or when a treasury was topped up.
That is the view most people actually want. If you are checking a counterparty before an OTC trade, sizing up a DAO treasury or simply trying to understand why your own wallet shows a strange balance, a portfolio with history answers the question faster than scrolling through transfers. You can narrow the history to a single token, which is a quick way to reconstruct when a position was built.
Tags, watch lists and exports
You can attach private tags and notes to addresses and transactions, then group them into collections such as “Exchanges” or “My cold wallets”. The watching service sends an email or Telegram message when a tracked address sends or receives a transaction, which is handy for monitoring a treasury multisig without writing code. Transaction histories can be exported to CSV with historical prices, so each row carries the dollar value at the time of the transfer. For anyone doing crypto accounting by hand, that one column saves hours.
The spam-token problem
There is a catch, and vitalik.eth shows it perfectly. The API returned 6,520 token entries for that address. The vast majority are unsolicited airdrops: worthless tokens sent to famous wallets in the hope that someone will look them up, see a “balance” and visit the scam website hidden in the token name. Ethplorer ranks holdings by dollar value, which pushes most of the junk to the bottom of the list, but a portfolio-first explorer inevitably puts this junk closer to your eyes than a transaction-first one. Our guide to the Ethereum token explorer explains how to tell a real token contract from a lookalike.
Token pages: holders, price history and activity
Ethplorer’s token pages are where it earns its reputation as an analyst’s tool. Take Tether USD at 0xdAC17F958D2ee523a2206206994597C13D831ec7. On the day we tested, Ethplorer counted 15,534,383 holders and more than 637 million transfers for the contract, and it shows the creation transaction from block 4,634,748 on 28 November 2017. The holder list ranks the largest balances with their percentage share: the top address alone held 19.25% of the Ethereum-side USDT supply, and the top three together more than a third.
15.5M
USDT holders
Ethplorer API, 24 Sep 2026
637M+
USDT transfers
since block 4,634,748
19.25%
Top holder share
of Ethereum USDT supply
Price history is charted next to activity: daily operations, transfer volume and holder growth. That combination is useful for spotting things price charts alone hide, such as a token whose price is flat while its holder count quietly collapses, or a sudden spike of transfers just before a listing. The site also keeps rankings of top tokens by market cap, trading volume and number of operations, a feed of newly tradable tokens, and a rich list of ETH addresses sorted by USD holdings. Token issuers can submit logos, links and descriptions through an update form.
One word of caution: holder counts on any explorer include dust balances and contracts, so “15 million holders” does not mean 15 million people. Compare the same metric across explorers before you quote it. Blockscout, Etherscan and Ethplorer all count slightly differently.
Widgets for websites
A lesser-known feature is the widget library. Ethplorer offers embeddable blocks for third-party sites: the most popular are a token activity chart for the last month and a list of recent transactions for a token or address, with more chart and list modes available. They are built on Google Charts and can be customised to fit your page. For a small token project that wants a live holders or transfers chart on its landing page without building a backend, this is one of the quickest options around. Keep in mind that any embedded third-party script loads from Ethplorer’s servers and sees your visitors’ IP addresses.
The Ethplorer API and the freekey
The Ethplorer API is refreshingly simple. Every call is a GET request with the key as a query parameter, for example https://api.ethplorer.io/getAddressInfo/0x…?apiKey=freekey. The main methods cover exactly what the website shows: getAddressInfo for balances and token holdings, getTokenInfo for supply, holders and price, getTopTokenHolders, getTokenHistory and getAddressHistory for operations, getTxInfo, and getTop or getTopTokens for rankings. Responses already contain USD prices and token metadata, which on other APIs would take several extra calls. The same interface works for BNB Chain, Linea, Blast and the testnets on their own base URLs.
The limits are the part to read carefully. According to the documentation, last updated in June 2026, the shared freekey allows 2 requests per second, 20 per minute, 100 per hour, 1,000 per 24 hours and 3,000 per week. Responses are capped at 100 operations and timestamps can reach back only 30 days. A free personal key, available after registration, allows 10 requests per second, up to 1,000 operations per response and a year of history. We hit the freekey limit on our fourth call within a second and got a clean 429 with the message “Request limit is reached for your API key”. Because freekey is shared by everyone on the internet, you can hit that wall even when your own traffic is tiny.
The terms ask users to place a reference to the Ethplorer API on their website, or to link to Ethplorer pages for addresses and transactions. For heavy monitoring there is a separate Bulk API Monitor that watches pools of addresses or token contracts and returns all new operations in one call; its launch post quoted plans from free up to $699 a month, but check the current API panel for today’s pricing. The API sends open CORS headers, so browser apps can call it directly. That is fine for freekey, but never ship a personal key inside frontend JavaScript. Our Ethereum explorer API comparison explains why and lists keyless alternatives.
Who Ethplorer is for
Token holders and traders get the most value. If you mostly ask “what is in this wallet?” or “who holds this coin?”, Ethplorer answers faster than any general explorer. Token teams and community managers use the holder and activity charts to report on distribution and the widgets to show live stats. Accountants and people preparing tax records benefit from CSV exports with historical dollar prices. And developers building small dashboards can prototype with freekey in minutes, then move to a personal key.
It is a weaker fit for smart contract developers, security researchers and anyone debugging a failed transaction. For those tasks, see our smart contract explorer guide and the transaction explorer walkthrough, which use tools with verified source code, decoded input data and internal call traces.
Weaknesses we ran into
Contract tooling is minimal. Ethplorer does not verify source code or offer Read and Write contract tabs, so you cannot inspect what a contract actually does. Transaction pages are shallow compared with Etherscan or Blockscout: you get the basics and token transfers, but in our tests nothing like the call traces, state changes and detailed input decoding that make a failed swap understandable. Newer protocol details, such as blob fields from EIP-4844 or EIP-7702 authorisation lists, are better served by Blockscout or a dedicated blob explorer.
The free API is tight. A thousand calls a day on a key shared with the whole world is enough for a demo, not for an app. Spam tokens clutter address pages, as described above. And while the site does not require an account, it sets its own cookies and offers a cookie settings panel; if you want a lookup that leaves as little trace as possible, our live Ethereum explorer runs entirely in your browser against public, keyless endpoints.
What we like
- Every address opens as a portfolio with USD values and a balance history chart
- Excellent token pages: holders with shares, price history, activity and holder growth
- CSV exports include historical prices, useful for accounting
- Simple JSON API with prices built in; open CORS;
freekeyfor instant tests - Email and Telegram alerts for watched addresses; embeddable widgets
What to watch
- No contract verification or Read/Write tabs; shallow transaction detail and no traces
- Shared freekey is capped at 2 req/s and 1,000 requests per day
- Airdropped scam tokens crowd popular addresses
- Public GitHub code is years behind the live site
How Ethplorer compares
Against Etherscan, Ethplorer wins on portfolio presentation, historical USD values and token analytics, and loses on almost everything contract-related. Against Blockscout, it offers richer token charts, while Blockscout publishes its current code as source-available software, currently offers a keyless API on its public instance and supports new transaction types quickly. Blockchair is the better pick if you work across many chains or want SQL-style filtering. If you are shopping for an explorer to replace Etherscan entirely, start with our list of Etherscan alternatives.
Our view after testing: keep Ethplorer bookmarked for anything that begins with “what tokens” or “who holds”, and use a full explorer for everything that begins with “why”. That split plays to each tool’s strengths, and because both are free, there is no reason to choose just one.