/getinfo endpoint is your primary health-check and status probe for a running Fuego daemon. It returns a comprehensive snapshot of the node’s view of the network: the current block height, live difficulty, mempool depth, peer counts, and the top block hash. You call it with a plain HTTP GET — no request body required — making it easy to integrate into monitoring scripts, dashboards, or node-selection logic.
GET /getinfo
URL:http://127.0.0.1:18180/getinfo
Response Fields
"OK" when the daemon is healthy. "BUSY" if the core is still initializing.Daemon version string (e.g.
"6.1.0").Current blockchain height as seen by this node — the index of the last block in the main chain.
Current network mining difficulty.
Total number of transactions ever confirmed on the chain (excludes coinbase transactions).
Number of transactions currently in the mempool waiting to be included in a block.
Number of alternative (orphaned) blocks the node is currently tracking.
Number of outbound P2P connections the daemon has established.
Number of inbound P2P connections from remote peers.
Number of peers in the white (trusted/recently-seen) peer list.
Number of peers in the grey (candidate) peer list.
The highest block index that this node is aware of from its peers. May be higher than
height during sync.Hex-encoded hash of the most recent block in the main chain.
The node operator’s fee address, if configured with
--fee-address. Empty string if not set.Major version of the current block format (9 = Godflame/Fuego era, active from height 826420).
Minor version of the current block format.
Total XFG currently locked in deposits across the network, in atomic units.
Block reward paid for the most recent block, in atomic units.
Unix timestamp of the most recent block.
Difficulty at the time the most recent block was mined.
List of currently connected peer addresses in
"ip:port" format.GET /getheight
Returns only the current block height. Useful for lightweight polling. URL:http://127.0.0.1:18180/getheight
Current blockchain height.
"OK" on success.GET /getpeers
Returns the list of peers the daemon is currently connected to. URL:http://127.0.0.1:18180/getpeers
List of peer addresses in
"ip:port" format that the daemon currently knows about."OK" on success.