Returns aggregate chain statistics including height, supply, and sync status.
Example Request
curl -X GET https://scan.mpty.site/api/v1/chain/summaryIntegrate Emptycoin Explorer data directly into your applications. All endpoints return JSON responses with standard success envelopes.
Returns aggregate chain statistics including height, supply, and sync status.
Example Request
curl -X GET https://scan.mpty.site/api/v1/chain/summaryReturns the circulating supply as a plain text string for API integrations (like CoinMarketCap).
Example Request
curl -X GET https://scan.mpty.site/api/v1/chain/supply/circulatingReturns a list of active network connections directly from MTY blockchain node.
Example Request
curl -X GET https://scan.mpty.site/api/v1/network/peersList blocks with pagination.
Example Request
curl -X GET 'https://scan.mpty.site/api/v1/blocks?limit=10'Get the latest blocks.
Example Request
curl -X GET https://scan.mpty.site/api/v1/blocks/latestGet block details by block height.
Example Request
curl -X GET https://scan.mpty.site/api/v1/blocks/height/10000Get block details by block hash.
Example Request
curl -X GET https://scan.mpty.site/api/v1/blocks/hash/0fc444cb98e48ab6f81b30dae8ab7af30d25e2c8List transactions for a specific block hash.
Example Request
curl -X GET https://scan.mpty.site/api/v1/blocks/hash/0fc444cb98e48ab6f81b30dae8ab7af30d25e2c8/transactionsGet the latest network transactions.
Example Request
curl -X GET 'https://scan.mpty.site/api/v1/transactions/latest?limit=10'Get specific transaction details by ID.
Example Request
curl -X GET https://scan.mpty.site/api/v1/tx/a1b2c3d4e5f6...Get summary, balance, and stats for a specific address.
Example Request
curl -X GET https://scan.mpty.site/api/v1/address/MEqffz6ZThvrLDrP4NMg81KJHBE2rBHN9MList transactions for a specific address.
Example Request
curl -X GET https://scan.mpty.site/api/v1/address/MEqffz6ZThvrLDrP4NMg81KJHBE2rBHN9M/transactionsList unspent transaction outputs (UTXOs) for an address.
Example Request
curl -X GET https://scan.mpty.site/api/v1/address/MEqffz6ZThvrLDrP4NMg81KJHBE2rBHN9M/utxosGet the balance history for an address.
Example Request
curl -X GET https://scan.mpty.site/api/v1/address/MEqffz6ZThvrLDrP4NMg81KJHBE2rBHN9M/balance-historyGet the staking summary for an address.
Example Request
curl -X GET https://scan.mpty.site/api/v1/address/MEqffz6ZThvrLDrP4NMg81KJHBE2rBHN9M/stakingGet top addresses ranked by balance.
Example Request
curl -X GET 'https://scan.mpty.site/api/v1/richlist?limit=100'Get top clustered wallets ranked by balance.
Example Request
curl -X GET 'https://scan.mpty.site/api/v1/richlist/wallets?limit=100'Get historical block generation times.
Example Request
curl -X GET https://scan.mpty.site/api/v1/stats/block-timesGet historical transaction volume data.
Example Request
curl -X GET 'https://scan.mpty.site/api/v1/stats/tx-volume?period=30d'Get network difficulty over time.
Example Request
curl -X GET 'https://scan.mpty.site/api/v1/stats/difficulty?period=30d'Get network supply changes over time.
Example Request
curl -X GET 'https://scan.mpty.site/api/v1/stats/supply?period=30d'Get historical active addresses count.
Example Request
curl -X GET 'https://scan.mpty.site/api/v1/stats/active-addresses?period=30d'Get network fees over time.
Example Request
curl -X GET 'https://scan.mpty.site/api/v1/stats/fees?period=30d'Get historical staking data.
Example Request
curl -X GET 'https://scan.mpty.site/api/v1/stats/staking?period=30d'Get UTXO set analytics.
Example Request
curl -X GET 'https://scan.mpty.site/api/v1/stats/utxo?period=30d'Get transaction types distribution.
Example Request
curl -X GET 'https://scan.mpty.site/api/v1/stats/tx-types?period=30d'Universal search by hash, height, or address.
Example Request
curl -X GET 'https://scan.mpty.site/api/v1/search?q=10000'Get summary of the current unconfirmed transaction pool.
Example Request
curl -X GET https://scan.mpty.site/api/v1/mempoolList transactions currently in the mempool.
Example Request
curl -X GET https://scan.mpty.site/api/v1/mempool/transactions