βš™οΈAPI

πŸ”Œ Menelik Blockchain API

Welcome to the Menelik Blockchain API! This API provides real-time blockchain data, including transactions, blocks, addresses, supply metrics, smartnode stats, and more.

🌐 Live API: explorer.menelik.fun:3300/api πŸ” Blockchain Explorer: Menelik Explorer πŸ“– Whitepaper: Menelik Whitepaper πŸ›£οΈ Roadmap: Menelik Roadmap


πŸš€ Available Endpoints

All API responses are returned in JSON format.

πŸ“Œ 1. Transactions for an Address

GET /transactions/:address Retrieves transactions associated with a given address (paginated, 100 records per page).

Example:

GET https://explorer.menelik.fun:3300/api/transactions/MJyFbKtyMeA9wkFf1UT5qDz2M2fsmb2TUa?page=1

{
  "page": 2,
  "results": [
    {
      "tx_hash": "abc123...",
      "amount": "10.00000000",
      "direction": "RECEIVED",
      "balance": "100.00000000",
      "timestamp": "Sep 20, 2025 09:15:22 AM UTC"
    },
    ...
  ]
}

πŸ“Œ 2. Top Addresses

GET /top-addresses Returns the top 200 addresses ordered by balance and total received.

Example:

πŸ“Œ 3. Address Details

GET /address/:address Returns basic information about an address.

Example:

πŸ“Œ 4. Blockchain Statistics

GET /table-records Returns counts of addresses, blocks, transactions, and recent blockchain statistics.

Example:

πŸ“Œ 5. Last Blocks

GET /last-blocks Retrieves latest 440 blocks from the blockchain.

Example:

πŸ“Œ 6. Total Emitted Coins

GET /total-emitted Returns the total emitted supply.

Example:

πŸ“Œ 7. Transaction Details

GET /txid/:txid Returns full details of a transaction.

Example:

πŸ“Œ 8. Simplified Transaction Data

GET /ext/tx/:txid Returns only input addresses and recipients of a transaction.


πŸ“Œ 9. Latest Blocks Summary

GET /latest-blocks-summary Returns a summary of the latest blocks.


πŸ“Œ 10. Block Details

GET /block-height/:height & /block-hash/:hash Returns block data by height or hash.


πŸ“Œ 11. RPC Stats

  • /getdifficulty

  • /getconnectioncount

  • /getpeerinfo

  • /getnetworkhashps

  • /getblockcount


πŸ“Œ 12. Network Stats

GET /getNetworkStats Returns combined network stats.

πŸ“Œ 13. Supply Information

GET /supply Returns maximum supply, circulating supply, burnt coins, and developer funds.

Example:

πŸ“Œ 14. Smartnode Locked Coins

GET /getSmartnodeLockedCoins Returns total locked collateral in Smartnodes.


πŸ“Œ 15. Smartnode Data

GET /getSmartnodeData Returns a summary of active Smartnodes.


πŸ“₯ How to Use the API

Base URL

Simply append the desired endpoint to query the API.

Example Fetch Request

Last updated