Skip to content
Get started

Single chain · Review

StellarExpert: the explorer that explains Stellar rather than listing it

Stellar was built for cross-border payments, and its protocol contains machinery no other chain has. An explorer that shows transfers and balances is missing most of what the network does.

Updated 17 September 2026 · How we test · 9 min read
Free, no key Open source 1 chain

At a glance

Operator
StellarExpert
Launched
2018
Chain
Stellar
Ledger close
~5 seconds
Built on
Horizon API
API key
Not required
Open source
Yes
Known for
Asset and anchor directory

The verdict

StellarExpert is the community explorer for Stellar and the only one that treats anchors, path payments and liquidity pools as first-class. It is fast, open source, has a keyless public API on top of Horizon, and handles asset issuance and trust relationships properly. Historical analysis is limited and Soroban contract tooling is still maturing.

What it does well

  • Path payments shown as the multi-hop currency conversions they actually are
  • Anchor and asset issuer information presented with the trust relationships that matter
  • Directory of known issuers, which is essential given how easy asset impersonation is
  • Open source, with a keyless public API built on Horizon
  • Fast pages — Stellar closes ledgers every few seconds and the explorer keeps up

Where it falls short

  • Limited historical charting and aggregate analysis
  • Soroban smart contract tooling is newer and thinner than EVM equivalents
  • Assumes familiarity with anchors and trustlines
  • Smaller ecosystem means less third-party cross-checking available

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 2.0
Stellar only.
Data depth 4.0
Path payments with the full route taken, anchor and issuer directory, liquidity pools, trustlines and reserve accounting.
Speed 5.0
Quick, matching a network that closes ledgers every few seconds.
Privacy 4.0
Open source, community-operated, with no commercial interest in who is looking things up.
API 4.0
Keyless public API layered on Horizon, which is itself open and self-hostable. A good arrangement.
Interface 4.0
Clear where it matters — the memo field and the issuer directory are both given the prominence that prevents real losses.

Anchors, and why an asset is a claim

Stellar assets other than XLM are issued by accounts. A US dollar token on Stellar is a liability of whoever issued it, redeemable with that issuer — the anchor — for actual dollars.

This means the identity of the issuer is not a detail, it is the asset. Two tokens both called USDC, issued by different accounts, are entirely different things with entirely different backing. One may be redeemable; the other may be worthless.

StellarExpert maintains a directory of known issuers and flags assets accordingly. Given how trivially an asset code can be reused — anyone can issue a token called anything — that directory is doing real protective work.

The practical rule, which mirrors token checking on every other chain: verify the issuer account, not the asset code. On Stellar the stakes are slightly higher, because the asset code is prominent and the issuer is easy to overlook.

Path payments: the feature nothing else has

A Stellar path payment lets you send one asset and have the recipient receive a different one, with the conversion happening atomically through the network's built-in order books and liquidity pools.

Send euros, the recipient receives dollars, and the route — possibly through several intermediate assets — is found and executed in a single operation. If no route exists at an acceptable rate, the whole thing fails and nothing moves.

This is the feature Stellar was designed around, and it explains the architecture. There is no smart contract involved; the conversion is protocol machinery.

StellarExpert shows the full path taken. That matters because the rate you received depends on the route, and the route is chosen at execution time. A payment that cost more than expected has its explanation in that path, and nowhere else.

Trustlines and reserves

As on the XRP Ledger, you must explicitly open a trustline before you can hold a Stellar asset. Unsolicited token spam is therefore structurally impossible — a genuine advantage over account-model chains where anyone can push anything into your address.

Each trustline consumes part of your account's reserve requirement. Stellar requires a base reserve to keep an account alive plus an additional reserve per entry — trustlines, offers, data entries, signers. That XLM is not spendable while those entries exist.

StellarExpert separates total from available balance and lists the entries consuming reserve. When a transfer of your "full balance" fails, this page is the explanation.

Memos deserve the same warning as XRP destination tags: exchanges use a shared deposit address and distinguish customers by memo. Send without it and recovery means a support ticket. StellarExpert shows the memo field prominently, which is the right decision.

API and Horizon

StellarExpert offers a public API without a key, built on top of Horizon — Stellar's own API server, which anyone can run and which several public instances expose free.

That layering is worth knowing. For raw ledger data, query Horizon directly; the documentation is good and public instances need no key. For enriched data — issuer directories, asset ratings, aggregated statistics — StellarExpert adds a layer Horizon does not have.

Running your own Horizon instance is realistic. Stellar's ledger is considerably smaller than Bitcoin's or Ethereum's, and Horizon is designed to be operated by anyone. For an application with meaningful volume that is the sensible path, and it removes the third party entirely.

What our reference tests showed

Our Stellar reference items were a plain XLM payment, a payment with a memo, a path payment converting between two assets, an asset from a known anchor, and an account holding several trustlines against its reserve.

All five rendered correctly. The memo appeared as its own prominent field rather than buried in transaction details, which is the presentation decision that prevents the most expensive user error on this network.

The path payment was the interesting one. StellarExpert showed the full route taken, including the intermediate asset, and the rate achieved at each hop. Working out from that why the received amount differed from a naive expectation took about twenty seconds. On a multi-chain explorer that merely indexes Stellar, the same transaction appears as a transfer with a slightly odd amount and no explanation available anywhere on the page.

The anchor directory correctly identified the known issuer and flagged a deliberately-chosen lookalike asset with the same code from a different issuer as unrecognised. That is exactly the protective behaviour the directory exists for, and it worked without us having to know what to look for.

The reserve accounting was clear: total balance, reserved amount, available amount, and the list of entries consuming reserve. We confirmed the arithmetic against the protocol's current base and per-entry reserve values, which the page also showed rather than assuming a figure that may have changed by validator vote.

The gap, consistent with our verdict, was historical. Asking how an asset's supply or an anchor's issuance had moved over the preceding year is not a question this interface answers well.

If this is not the one

Stellar is indexed by several multi-chain explorers, none of which model its payment features.

StellarExpert: common questions

Why do I need a trustline to receive a Stellar asset?

Because assets are issuer liabilities and holding one is an explicit choice. The side effect is that unsolicited token spam cannot happen on Stellar.

What happens if I send Stellar assets without a memo?

If the recipient is an exchange using a shared deposit address, the funds arrive unattributed and recovery requires a support ticket. Always include the memo you are given.

Why can I not send my full XLM balance?

Reserves. A base reserve keeps the account alive and each trustline, offer or signer consumes additional reserve. StellarExpert separates total from available.

How do I check a Stellar asset is genuine?

Verify the issuer account, not the asset code. Codes can be reused freely by anyone. StellarExpert maintains a directory of known issuers for exactly this reason.

Does StellarExpert have a free API?

Yes, keyless, built on Horizon. Horizon itself is open and public instances require no key either.