Bitquery ExplorerFree · no signup40+ chains

Paste an address. See everything it did, on every chain.

Bitquery Explorer is a free block explorer for 40+ networks. Search an address, transaction, token, DEX pair or block and get balances, decoded transfers, labelled counterparties, trades and money-flow paths in one interface — read off the same index that serves our APIs.

No account · no API keyEVM · Solana · Bitcoin · TRON · UTXOEntity labels & fund-flow tracing built in
addresstx hashtoken / mintpairblock heightENS / domain
Binance 14 — exchange hot walletEthereum
Same address, 412k transfersBSC
Same address, 38k transfersPolygon

What you actually get

One address, four questions answered

A walkthrough of the real interface, using a real exchange wallet. Click a tab: who is this, what has it moved, what has it traded, and where did the money go. The figures below are illustrative — open the address in the Explorer for live values.

explorer.bitquery.io/ethereum/address/0x28C6c06298d514Db089934071355E5743bf21d60Sample view
2,908,441
Transfers indexed
$2.26B
Token value held
41,067
Distinct counterparties
4 chains
Same address, one page
Top counterpartyDirectionVolume (30d)Transfers
Binance 7 Exchangein$1,204,880,11028,114
Binance cold 2 Exchangeout$883,441,2901,902
Tether Treasury Issuerin$400,000,00014
Uniswap V3 router DEXout$61,733,5407,441
0x9f2…c1ad Unlabelledout$4,118,922308

Counterparties arrive already resolved to entities — exchanges, issuers, routers, bridges, mixers — not raw hex. That labelling is what makes the next three tabs readable.

Time (UTC)DirAmountTokenCounterpartyTx
14:02:11out12,000,000.00USDTBinance cold 2Exchange0x8f31…a04c
14:01:47in248,900.51USDC0x4c2b…9d170x1ba7…77e0
14:01:35in64.2081WETHUniswap V3 routerDEX0xc099…31f2
14:01:12out1,500,000.00USDTArbitrum bridgeBridge0x5d40…be88
14:00:58in9.9812WBTC0x9f2e…c1adUnlabelled0xa71c…2b03
14:00:41out320,000.00USDTBinance 7Exchange0x3e88…10d5

Native, ERC-20, SPL and UTXO movements in one decoded table — filterable by token, direction, counterparty and time range, exportable as CSV. Same shape as the Address API response.

TimePairProtocolSideAmountPriceValue
14:01:35WETH / USDCUniswap V3buy64.20813,041.88$195,313
13:58:02WETH / USDTUniswap V2sell210.00003,040.11$638,423
13:51:44WBTC / USDCCurvebuy9.981296,204.30$960,258
13:44:19LINK / WETHSushiswapsell88,400.000.00481$1,293,004

Trades are decoded per protocol — Uniswap, Curve, PancakeSwap, Raydium, Meteora, Pump.fun and more — with the price and USD value already computed. This is the DEX API and Price API rendered in a table.

source0x28C6…1d60hop 1 · $18.4Mhop 2 · $11.2Mhop 2 · $7.2Mhop 3hop 3BinanceOKXBybitKraken

Follow funds up to several hops, across chains, and see which exchange deposit address they land in — the tracing engine is Coinpath®. We use the same view in our own published investigations.

01

Labels, not hex

Exchanges, issuers, bridges, routers and mixers are named on sight, so a page of addresses reads like a page of entities.

02

One address, every chain

Switch chains without switching explorers. The same EOA on Ethereum, BSC, Polygon and Base sits behind one search. See coverage →

03

Trades and flows, not just logs

DEX trades are decoded per protocol and fund flows are traced multi-hop — the two things generic explorers make you reconstruct by hand.

Search anything

Five things people paste into the search box

Whatever you arrive with — a wallet from a spreadsheet, a hash from a support ticket, a mint from a Telegram group — here is what comes back.

0x28C6…1d60 · vitalik.eth

An address

  • Token and native balances, current and historical
  • Entity label and first/last activity
  • Decoded transfers with counterparties
  • Same address across every chain it touched
0x8f31…a04c

A transaction

  • Every internal call and token movement decoded
  • Gas, fees, status and block position
  • Swap legs resolved to pairs and protocols
  • Sender and receiver labelled where known
USDC · 9cRC…pump

A token

  • Supply, holders and concentration
  • Price, OHLCV and volume across venues
  • Mint, authority and metadata
  • Top holders and recent large moves
ProgrammaticallyToken Holder API →
WETH / USDC · Uniswap V3

A DEX pair or trade

Trades, liquidity, OHLCV and buyer/seller breakdown for a pair on any supported venue — including Solana launchpads where a token can be minutes old. Pair pages read from the same feed that powers trading terminals and bots.

block 21,904,772

A block

  • Transactions, value moved and fee totals
  • Proposer, size and timestamp
  • Straight into any transaction inside it

Coverage

40+ chains, one search box

EVM chains, Solana, Bitcoin and the UTXO family, TRON, Cosmos chains and more — each one fully decoded rather than raw-log dumped. The full list, with what is indexed per chain, lives on the blockchains hub.

40+
chains in the explorer
1PB+
indexed blockchain data
10bn+
API calls served monthly

From click to query

Anything you can see here, you can request as JSON

The Explorer is a reader on the Bitquery index. When browsing turns into building, the same data comes back through one GraphQL endpoint — here is the counterparty table from the demo above, as a query.

queryAddressTransfers.graphqlstreaming.bitquery.io/graphql
# transfers for one address, newest first
{
  EVM(network: eth, dataset: combined) {
    Transfers(
      limit: {count: 10}
      orderBy: {descending: Block_Time}
      where: {Transfer: {Sender: {is: "0x28C6…1d60"}}}
    ) {
      Block { Time }
      Transfer {
        Amount
        Currency { Symbol SmartContract }
        Receiver
      }
    }
  }
}
response200 OK · 148 msapplication/json
{
  "Transfers": [
    {
      "Block": { "Time": "2026-07-27T14:02:11Z" },
      "Transfer": {
        "Amount": "12000000.00",
        "Currency": {
          "Symbol": "USDT",
          "SmartContract": "0xdAC1…1ec7"
        },
        "Receiver": "0x3f5C…20a4"
      }
    }
    // 9 more
  ]
}

Where it fits

Not a replacement for your chain's explorer. A different tool.

Single-chain explorers are excellent at verifying one transaction on one network. Bitquery Explorer is built for the questions that cross chains, venues and hops.

Multi-chain in one interface

One search covers 40+ networks, so an address that operates on Ethereum, BSC and Solana is one page rather than three tabs and three schemas.

DEX-aware by default

Swaps arrive decoded into pair, side, price and USD value across every indexed venue — no reading transfer logs to work out what was traded. Same feed as the DEX API.

Money flow, built in

Multi-hop tracing with Coinpath® and entity labels — the workflow behind AI investigations and our own case write-ups.

Honest limits: we decode and normalise, which means a brand-new contract may show as an unlabelled address until it is classified, and chain-specific curiosities are sometimes better inspected on that chain's native explorer. Everything else about an address — history, counterparties, trades, flows — is what this tool is for.

FAQ

Questions people ask before clicking

Is Bitquery Explorer free?
Yes. Browsing, searching and tracing in the Explorer is free and unmetered for normal human use. Paid plans start at $49/mo and apply to programmatic access — the APIs, streams and datashares behind it. See pricing.
Do I need an account?
Not to browse. Open the Explorer and search — no signup, no API key, no card. You only create an account when you want to query the data yourself in the GraphQL IDE or from your own code.
Which chains are covered?
40+ networks: Ethereum and the major EVM L2s, Solana, Bitcoin and the UTXO family, TRON, Cardano, XRP Ledger, Stellar and more. The blockchains hub lists every chain with what is indexed for it.
How is this different from a single-chain explorer?
Three things: it is multi-chain behind one search, DEX trades are decoded per protocol instead of left as transfer logs, and multi-hop money-flow tracing with entity labels is built in. If you need to confirm one receipt on one chain, that chain's own explorer is fine. If you need to know where funds went and who is on the other side, use this.
Can I get this data through an API?
Everything visible in the Explorer is queryable. One GraphQL schema covers all 40+ chains, with WebSocket streams for real-time, Solana gRPC for low latency, cloud datashares for bulk history and an MCP server for agents. Start in the IDE or read the docs.
What are the limits?
The Explorer is designed for interactive use, so very large exports and high-frequency polling belong on the API side, where quotas are explicit per plan. Scraping the Explorer will be rate-limited long before it becomes useful — an API key is faster and cheaper. Teams needing full history or dedicated throughput should look at plans.

Go look up an address.

It takes ten seconds and no account. If you like what comes back, the same data is one query away.

Free · no signup · 40+ chains · labels & money-flow tracing included