Skip to content
Get started

Multi-chain · Review

Blockchair: the explorer that lets you ask questions

Every other explorer expects you to arrive with a hash. Blockchair is the only free one that lets you arrive with a question instead — and that single difference changes what the tool is for.

Updated 17 September 2026 · How we test · 11 min read
Free, no key Onion service Works without JS 20 chains

At a glance

Operator
Blockchair
Launched
2016
Chains indexed
20
Query layer
Filter, sort, aggregate
API key
Not required at low volume
Bulk dumps
Yes, published openly
Onion service
Yes
Works without JS
Yes

The verdict

Blockchair is the research tool in a field of lookup tools. Its filtering and aggregation layer lets you ask things no other free explorer can answer, it covers twenty chains under one consistent schema, and the API works without a key. The interface is dense and the learning curve is real, but for anyone doing work rather than checking a payment it is the most capable free option available.

What it does well

  • Query layer supports filtering, sorting and aggregation across every indexed field — closer to SQL than to a search box
  • Twenty chains under one consistent data schema, so a query written for Bitcoin mostly works on Litecoin
  • Permissive CORS headers mean it can be called straight from a browser, which almost no multi-chain API allows
  • Publishes bulk database dumps, so you can take the data and work offline
  • Reachable over Tor, and renders usable content with JavaScript disabled

Where it falls short

  • Keyless requests now hit an IP blacklist after roughly ten calls — HTTP 430, not a soft throttle (measured 17 September 2026)
  • The interface is dense and unwelcoming if you only wanted to check one transaction
  • Query syntax is powerful but undocumented in places, and error messages are unhelpful
  • Free API tier throttles sooner than the documentation implies once you are looping
  • Privacy policy is better than most, but it is still a hosted commercial service you cannot audit

Why it scored what it scored

Six criteria, each out of five, weighted as set out in our methodology. A score without a reason is just a number, so here is the reason for each one.

Coverage 5.0
Twenty chains spanning UTXO, account, eUTXO and private models, all under one schema. The consistency matters more than the raw count.
Data depth 5.0
Every indexed field is filterable, sortable and aggregatable. It answers questions other explorers cannot express, let alone resolve.
Speed 4.0
Quick and predictable. Pages render without a JavaScript dependency, so there is no loading state to wait through.
Privacy 4.0
Onion service, works without JavaScript, and publishes bulk dumps so sensitive queries need never be sent at all. Still a hosted third party.
API 5.0
Permissive CORS makes it callable straight from a browser, which is rare and genuinely useful. The keyless allowance is now so tight — around ten requests before an IP blacklist, measured 17 September 2026 — that it is hard to build on.
Interface 4.0
Information-dense and unforgiving for a casual visitor, but coherent once you understand that it is a query tool rather than a lookup box.

The query layer is the whole point

Type a transaction hash into any explorer and you get that transaction. Useful, and entirely unremarkable. Blockchair is the only free explorer where you can instead say: show me every Bitcoin transaction confirmed yesterday with more than fifty inputs, sorted by fee rate, and count them.

It does this by exposing its index as a queryable surface rather than a set of fixed pages. Every field it has stored — block height, time, input count, output count, fee, fee per byte, size, weight, whether the transaction signalled replace-by-fee — can be filtered on, sorted by, and in many cases aggregated.

The same structure appears in the URL and in the API, which is the design decision that makes the whole thing work. A query you build by clicking around the web interface can be lifted straight into a script:

GET https://api.blockchair.com/bitcoin/transactions
  ?q=time(2026-09-16..2026-09-17),input_count(50..)
  &s=fee_per_kb(desc)
  &limit=100

There is no meaningful equivalent on Etherscan or mempool.space. To answer that question with either of them you would pull raw blocks and filter locally, which for a week of Bitcoin history is a real piece of work rather than a two-minute task.

Twenty chains, one schema

Blockchair indexes Bitcoin, Bitcoin Cash, Ethereum, Litecoin, Dogecoin, Dash, XRP, Stellar, Monero, Cardano, Zcash, eCash, Groestlcoin and several more. The coverage is not the widest available — Tokenview claims more, and OKLink covers more EVM networks — but the consistency is the thing nobody else matches.

Because the schema is shared, a query written against Bitcoin generally works against Litecoin or Dogecoin by changing one path segment. For anyone comparing behaviour across UTXO chains, that is the difference between an afternoon and a fortnight.

It handles the awkward chains honestly too. On Monero it indexes what is publicly visible — block structure, transaction existence, ring sizes — and does not pretend to amounts or participants, because those are cryptographically hidden. Explorers that imply otherwise on Monero are showing you a guess.

Chain familyExamples indexedWhat you can query
UTXOBitcoin, Litecoin, Dogecoin, Dash, BCH, ZcashInputs, outputs, fee rate, script type, RBF flag, coinbase
AccountEthereum, XRP Ledger, StellarCalls, internal transfers, gas, token movements
eUTXOCardanoOutputs, stake keys, epoch, pool
PrivateMoneroBlock and transaction structure only — amounts stay hidden

A keyless API that still works

We tested this with live requests rather than reading the pricing page, because the gap between the two is where most API comparisons go wrong. A plain request to the stats endpoint returned a full result with no key, no registration and no email address:

curl https://api.blockchair.com/bitcoin/stats

It also returns Access-Control-Allow-Origin: *, which means it can be called directly from a browser. That is a bigger deal than it sounds. Etherscan and Blockscout both require a key, and a key cannot be safely put in front-end code, so both force you to run a server. Blockchair does not. The lookup tool on this site used exactly this property until the rate limits below made it unusable, which is the whole story of this API in one sentence.

The dashboards endpoints are the ones worth learning. A single call returns an address with its balance, transaction count, first and last activity, and a page of transactions — where most APIs would need three or four round trips.

Rate limits, measured — and they have tightened badly

The documented free allowance is roughly thirty requests per minute, and until recently the service throttled gently when you passed it. That is no longer what happens. Re-testing on 17 September 2026 from a single address, we were cut off after roughly ten ordinary requests — not throttled, blacklisted. The reply is HTTP 430 with the body Your IP address is temporary blacklisted due to exceeding usage of API resources, and it applies to every endpoint including the free stats call that had just worked. We removed Blockchair from this site's lookup tool because of it.

The distinction matters for anything you build. A throttle you can back off from; a blacklist you cannot, and if your requests come from one server address rather than from each visitor's browser, one burst takes the whole feature down for everyone. Treat the keyless API as something to try, not something to depend on, and have a second source ready.

Privacy: better than most, still a third party

Blockchair scores well here by the standards of hosted explorers, for three concrete reasons rather than any promise.

It runs an onion service, so a lookup can be made over Tor without exiting to the clear web. It renders usable content without JavaScript, which removes an entire class of browser fingerprinting. And it publishes bulk database dumps, which means the heaviest users — researchers, analysts, anyone whose query pattern would itself be revealing — can take the data and work locally.

That last point is the one people overlook. If your queries are sensitive, the answer is not a better privacy policy, it is not sending the queries at all. Blockchair is one of very few explorers that makes that practical without you running a node.

What it cannot offer is verifiability. It is a hosted service with closed infrastructure, and you are trusting an operator. If that is unacceptable, the honest answers are Otterscan against your own node, or a self-hosted Esplora instance. Our privacy guide sets out where each option actually lands.

Who it is actually for

If you have been given a transaction ID and told to check it, Blockchair is the wrong tool. It will answer you, but the page is dense, the terminology is unforgiving, and mempool.space will tell you what you need in a quarter of the time with a clearer picture of where you sit in the queue.

If you are trying to establish a pattern — how fee rates moved during a congestion event, how many addresses of a particular script type appeared in a period, whether two chains behaved similarly during the same window — there is nothing else free that comes close. Dune is more powerful for aggregate analysis but requires you to write SQL against its schema and meters your query credits; Blockchair answers a large class of questions from a URL.

And if you are building something on a static site or in a browser extension where you cannot hold a secret, a CORS-enabled keyless API is one of a handful of options that exist at all. That constraint is invisible until you hit it, and then it is the only thing that matters. Blockchair still technically qualifies — but on the allowance we measured, plan for it to stop answering, and decide now what your code does when it does.

Our habit

We use Blockchair as the second opinion. When an explorer shows something that looks wrong — a balance that does not reconcile, a transaction that seems to have vanished — running the same lookup here against a separately maintained index settles it in seconds. Disagreement between two indexes is almost always an indexing artefact rather than a chain event, and knowing which is which saves a lot of unnecessary alarm.

If this is not the one

Blockchair sits between a plain explorer and a full analytics platform. Depending on which side of that line your question falls, one of these may suit better.

Blockchair: common questions

Is Blockchair a Bitcoin blockchain explorer?

Yes, and considerably more. It indexes Bitcoin alongside nineteen other chains including Ethereum, Litecoin, Dogecoin, Dash, XRP, Stellar, Cardano, Zcash and Monero, all under one consistent schema.

Does the Blockchair API need a key?

Not for modest use. We confirmed keyless requests work, and the API sends permissive CORS headers so it can be called from a browser. Keys are sold for higher volume. Full detail in our API comparison.

Is Blockchair safe to use?

It is a long-established service with an onion address and a better-than-average privacy posture. As with any hosted explorer, a lookup tells the operator that someone at your IP is interested in that address. Nothing on the site can move your funds, and it should never ask for a private key or seed phrase — if a page claiming to be Blockchair does, it is a clone. See spotting fake explorers.

Blockchair or Etherscan for Ethereum?

Etherscan, for anything involving contracts — verified source and the read/write interface have no equivalent here. Blockchair wins when the question spans several chains or needs filtering across many transactions at once.

Can I download Blockchair data in bulk?

Yes. It publishes database dumps, which is unusual among explorers and genuinely useful for research — and for keeping sensitive queries off the network entirely.