Complete API endpoints for ViceversaChain Explorer
Basic blockchain information (blocks, network, mining)
Complete blockchain statistics (including UTXO, mempool, calculated stats)
Top addresses with pagination (sorted by balance)
Latest blocks (default 10, customizable limit)
Block details by hash or height (e.g., /api/block/99964161)
Transaction details by transaction ID
Address details with UTXO balance
Universal search (block height, transaction hash, address)
fetch('/api/stats')
.then(response => response.json())
.then(data => console.log(data));
curl -X GET http://localhost:3003/api/stats