A read-only REST + SSE API over the full Anemos chain. No key required.
https://explorer.anemos.network/apiAppend any path below, e.g. https://explorer.anemos.network/api/blocks/1. Responses are JSON.
Returned as { nanoanm, anm } — an exact integer string in NanoANM (1 ANM = 10⁹) plus a float for display.
List endpoints are keyset-paginated; follow next_cursor until it is null.
Responses carry short Cache-Control TTLs; statistics are precomputed and served from cache.
/statusChain head and headline totals: height, blocks, transactions, accounts, validators, minted/circulating/staked supply, treasury, average block time.
/syncIndexing progress vs. the live network tip: indexed_height, node_height, network_height, blocks_behind, progress_pct, is_syncing.
/blocksLatest blocks, newest first. Keyset-paginated.
/blocks/{height}A single block by height, including its transactions and certificate.
/blocks/hash/{hash}A single block by its block hash.
/txsLatest transactions, newest first. Keyset-paginated.
/txs/{id}A single transaction with its decoded, type-specific payload.
/addresses/{addr}Account summary: balance, number, first/last seen, transaction count.
/addresses/{addr}/txsTransactions involving an address (sent, received, staked), newest first.
/addresses/{addr}/balance-historyDaily balance reconstructed from genesis to now, bounded point count.
/validatorsValidator set with stake, availability, blocks proposed and status.
/validators/{addr}A single validator's details.
/validators/{addr}/rewardsReward history for a validator.
/validators/{addr}/blocksBlocks proposed by a validator.
/validators/{addr}/availabilityAvailability-score history for a validator.
/searchResolve a query to a block height, block hash, transaction id or address.
All stats endpoints accept ?range=7d|30d|90d|1y|all (default 7d). Daily-bucketed series are cached and refreshed on a schedule for instant delivery.
/stats/overviewSame payload as /status (dashboard alias).
/stats/transactionsTransaction count, fees and block stats per bucket.
/stats/tx-typesTransaction counts per day, pivoted by payload type.
/stats/volumeTransferred value per day (excludes block rewards).
/stats/supplyCumulative minted supply over time.
/stats/cumulative-transactionsTotal transactions over time (network adoption curve) + daily counts.
/stats/feesTotal fees per day.
/stats/block-timeAverage block interval per day.
/stats/consensus-roundsCertificate-round distribution over the recent window and the round-0 share (consensus efficiency).
/stats/validator-availabilityDistribution of validators by availability score (reliability snapshot).
/stats/accountsNew and active accounts per day, plus cumulative total.
/stats/stakingCumulative staked over time from bond/withdraw flows.
/stats/chain-stateReconstructed total staked, validators, active validators and pending unstake per day.
/stats/validator-activityDaily bond/unbond/withdraw counts and unique proposers.
/stats/participationDaily committee participation rate.
/stats/fee-histogramDistribution of transaction fees by bucket.
/stats/concentrationWealth concentration: top-N share, Gini and a balance histogram (circulating holders only).
/stats/richlistTop accounts by balance with share of circulating supply.
/stats/largest-transactionsLargest transfers all-time by value (excludes block rewards).
/stats/network-historyTime series of a network metric.
Served from the node in real time.
/committeeCurrent committee, power and protocol-version distribution.
/consensusLive consensus snapshot (instances, votes, proposal).
/mempoolPending transactions in the node's mempool.
/peersConnected peers with agent, direction, height and sessions.
/peers/geoGeo-located peers and per-country tally for the world map.
/peers/{id}Stored peer detail with uptime and height history.
/networkNode and network overview (peers, reachability, agent, clock offset).
/stream/blocksServer-Sent Events. Emits `event: block` and `event: tx` as new blocks and transactions are indexed. Connect with an EventSource and listen for both event types.