How to Use a Bitcoin Block Explorer: Verify Your Own Transactions Without Trusting Anyone
A block explorer is the closest thing Bitcoin has to a court record. Anyone can read it. Most beginners never open one, then have to take their wallet's word for everything. Here is the 10-minute crash course.
By The BitcoinHomeBase Team · Published 2026-05-01 · 8 min read
The single most empowering thing a Bitcoin beginner can learn — and one of the most ignored — is how to read a block explorer. It's the public ledger, the searchable history of every Bitcoin transaction ever made, and it's available to anyone with a web browser. You don't need an account. You don't need permission. You don't need to trust your wallet, your exchange, or the person sending you Bitcoin: you can verify everything yourself.
This is the part of "be your own bank" that almost no one teaches. Banks send you a statement and you trust it. Bitcoin invites you to check the ledger yourself. Below is the 10-minute crash course on how.
What a block explorer actually is
A block explorer is a website (or sometimes an app) that displays the contents of the Bitcoin blockchain in a readable format. Behind the scenes, the explorer is running a Bitcoin node — a copy of the entire ledger, currently around 600 GB of data — and serving up a friendly view of it. Popular general-purpose explorers include:
mempool.space — the modern community favorite. Open source, run by the developer Jochen Hoenicke and contributors. Best for fee analysis and pending transaction tracking.
blockstream.info — clean, fast, run by the company Blockstream.
blockchain.com/explorer — the oldest. Functional but its UI is cluttered with promotional content.
For everything in this article, we'll use mempool.space as the default because the UI is the most beginner-friendly and the data is excellent.
The three things you'll search for
A block explorer's search bar accepts three different kinds of input:
A transaction ID (TXID) — 64 characters of hex, e.g. a1b2c3.... Looks up a specific transaction.
A Bitcoin address — starts with 1, 3, or bc1. Looks up the entire history of an address.
A block height or block hash — e.g. 880000. Looks up a specific block.
For day-to-day verification you'll mostly use the first two.
How to verify your own outgoing transaction
Say you just sent 0.05 BTC from your wallet to a friend. Here's how to confirm what really happened:
Find the TXID in your wallet. Open the transaction details. The TXID is the long hex string usually labeled "Transaction ID" or "txid."
Paste it into mempool.space. The page that loads will show the transaction.
Look at the four sections:
Status: "Unconfirmed" (still in mempool) or a number of confirmations (1, 2, 3+).
Inputs: The UTXOs you spent. You'll see them with the previous-transaction addresses.
Outputs: Where the money went. You should see two outputs: one going to your friend's address, one (the change) coming back to a fresh address inside your own wallet.
Fee and fee rate: The total fee in sats and the rate you paid in sats/vByte.
If the recipient address matches what your friend gave you, and the amount is correct, you have proof — without trusting your wallet's UI — that the transaction is on its way.
How to verify someone else's incoming transaction
Reverse the situation: someone says they sent you 0.05 BTC. Here's how to confirm before you act on their word:
Ask them for the TXID, not just a screenshot.
Paste the TXID into mempool.space.
Confirm the receiving address matches the address you gave them.
Check the confirmation count. For small amounts (< $1,000), 1 confirmation is plenty. For large amounts, wait for 3–6 confirmations before treating it as final.
This is critically important if you're selling something for Bitcoin in person, accepting Bitcoin for a service, or doing any kind of P2P trade. "I sent it" is meaningless without a TXID and a confirmation count.
How to read confirmations
Every time a new Bitcoin block is mined — roughly every 10 minutes — transactions in that block get one more confirmation. The convention is:
0 confirmations: Transaction is broadcast and visible in the mempool but not yet in a block. Final-ish for tiny amounts; never trust it for large ones.
1 confirmation: Transaction is in the most recent block. Effectively final for everyday consumer amounts.
3 confirmations: The standard "settled" point most exchanges use for crediting deposits. Reversing a transaction at this depth is virtually impossible.
6 confirmations: The historical "ironclad" threshold, dating from a 2010 Satoshi-era recommendation. Used by exchanges for very large deposits.
The deeper a transaction is in the chain, the more expensive it would be to reverse it. After 6 blocks (~1 hour), reversing a transaction would require an attacker to outpace the entire global hashrate — in 2026, that's a multi-billion-dollar undertaking that has never been done.
What you can learn from looking up an address
Type a Bitcoin address into the search bar and you'll see:
Total received ever, in BTC and dollars.
Total sent ever.
Current balance.
Number of transactions using this address.
Full history of every transaction the address has been part of, scrolling back as far as it goes.
This is why address reuse is a privacy disaster. Anyone who has ever sent you Bitcoin to a particular address can see your entire balance and history at that address. Modern wallets generate a fresh address for every receive specifically to keep this from happening. (For more on this, see our Bitcoin privacy primer.)
The "did the exchange actually send it?" check
You requested a withdrawal from Coinbase, Kraken, or whoever. They show "Withdrawal initiated" or "Sent." Did they actually broadcast it?
Find the TXID in the exchange's withdrawal history. Sometimes it's hidden behind a "details" link.
Paste it into mempool.space.
If it shows up at all, the transaction is broadcast — you're now waiting on the network, not the exchange.
If the exchange says "Sent" but no TXID is provided or the TXID returns "transaction not found," the exchange has not actually broadcast it yet. Often this means they're batching multiple customer withdrawals into a single transaction (this is normal and saves fees, but can take 10–60 minutes).
This single skill has saved countless hours of "is the exchange about to go bankrupt?" panic.
Reading a block
Click on the latest block at the top of mempool.space and you'll see:
The block's height (how many blocks deep it is).
The hash, a 64-character fingerprint of the block.
The previous block hash, which is what makes the chain a chain.
The timestamp, the size, and the number of transactions included.
The miner (Foundry, AntPool, ViaBTC, etc.).
The total fees paid to the miner and the block reward (currently 3.125 BTC after the 2024 halving).
This is what every Bitcoin node sees, what every wallet ultimately consults, and what makes the whole system trust-minimized. Anyone can audit any block.
Common questions
Will the explorer know who I am?
Block explorers see the same data anyone else does — addresses and transactions, no names. They can't tie an address to your identity unless you've publicly published it. That said, when you look up your own address, you're telling the explorer's web server (and your ISP, and anyone watching your traffic) which address you're interested in. For full privacy, run your own node and use its built-in explorer or use mempool.space over Tor.
Are the explorers I named all reliable?
The three named (mempool.space, blockstream.info, blockchain.com) all run their own Bitcoin nodes and serve real on-chain data. The data is the data — if a transaction shows up in one, it shows up in all of them within seconds. Pick whichever UI you like.
Should I run my own block explorer?
Eventually, yes — this is the gold standard. Once you're holding meaningful sums, running your own Bitcoin node (which can serve as your own private block explorer) eliminates the last bit of trust you're placing in third parties. Our node guide walks through it.
What's an Ordinals/Inscriptions transaction?
You'll occasionally see oddly large transactions on the explorer with "Inscription" or "BRC-20" labels. These are people using Bitcoin to store small digital artifacts directly on the blockchain. They're controversial — some see them as creative use of block space, others as spam — but they're a legitimate (and fee-paying) part of the network. They don't affect your normal Bitcoin holdings.
The shortest possible summary
A block explorer turns the global Bitcoin ledger into a search bar. Use it to verify your own outgoing transactions, confirm incoming ones, check whether an exchange actually sent your withdrawal, and see how many confirmations a transaction has. Use mempool.space for general use; eventually run your own node for full privacy. Five minutes of practice with the search bar will make you more confident in your Bitcoin holdings than five years of reading Twitter threads.
Golden Circle Insider Price
Get the complete 15-chapter ebook for $9
The full Bitcoin playbook for beginners — how to buy, store, protect, and think about Bitcoin for the long run. 15 chapters. Plain English. Written for people who feel left behind, never for the already-initiated.
$17$9
All 15 chapters — buying, wallets, ETFs, mining, taxes, and the long-term mindset
The full Bitcoin Security Checklist (included)
Quick-Start Card for your first purchase
30-day money-back guarantee — no forms, no questions