Skip to main content
Every lumerad node serves the CometBFT RPC on port 26657. CometBFT is the consensus engine under Lumera Protocol, and this API exposes what it sees. Raw blocks, transactions, the validator set, peer connections, and node health. Cosmos wallets, client libraries, and the Lumera SDKs use it to broadcast transactions and follow chain state. This page covers the endpoints developers reach for most. The official CometBFT RPC documentation lists the full catalog. Lumera runs the v0.38 line.

Base URLs

The official mainnet endpoint can be intermittent, so the examples below use the community endpoints.
Validators keep port 26657 closed to the public. Use the public endpoints above, or run your own full node when you need guaranteed access and no rate limits.

/status

Node identity, sync state, and the latest block. Check catching_up to see whether a node is fully synced.

/abci_info

The application version the node runs. This is the same check the validator runbooks use to confirm the current network binary.

/block

The latest block, or a specific block when you pass height.

/tx

A transaction by hash. The hash must carry the 0x prefix. A code of 0 in tx_result means the transaction succeeded.

/validators

The active validator set at the latest height, or at a given height. Lumera caps the active set at 50 validators, so one page covers it. Governance can change the cap.

/net_info

Peer count and peer details. Useful when you run your own node and want to verify connectivity.

/broadcast_tx_sync

Broadcasts a signed transaction and returns after the mempool check. Most applications broadcast through lumerad or an SDK instead of calling this endpoint by hand.

Beyond HTTP GET

Every endpoint also accepts JSON-RPC over HTTP POST, and a WebSocket at /websocket supports event subscriptions. See the CometBFT RPC documentation for parameters, response schemas, and the endpoints not shown here.

Next steps

EVM JSON-RPC

Ethereum-style RPC on EVM enabled networks.

API overview

All Lumera API surfaces at a glance.

Networks

Chain IDs, endpoints, and seeds for mainnet and testnet.