βοΈ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