
The block explorer provides an API allowing users and/or applications to retrieve information from the network without the need for a local wallet.
Return data from coind
getdifficulty 
Returns the current difficulty. 
127.0.0.1:3001/api/getdifficulty   
getconnectioncount 
Returns the number of connections the block explorer has to other nodes. 
127.0.0.1:3001/api/getconnectioncount 
getblockcount 
Returns the current block index. 
127.0.0.1:3001/api/getblockcount
getblockhash [index] 
Returns the hash of the block at ; index 0 is the genesis block. 
127.0.0.1:3001/api/getblockhash?index=1337
getblock [hash] 
Returns information about the block with the given hash. 
127.0.0.1:3001/api/getblock?hash=0000002a6a67ae30f1d4f78bad0ed51ae6f92acd04e303e2cf7c8c2ae13b46b8
getrawtransaction [txid] [decrypt] 
Returns raw transaction representation for given transaction id. decrypt can be set to 0(false) or 1(true). 
127.0.0.1:3001/api/getrawtransaction?txid=4805113900ba5f48d04dcd9a3c287adfec53135dde0af2de4bbf4a88b1809aeb&decrypt=0 
127.0.0.1:3001/api/getrawtransaction?txid=4805113900ba5f48d04dcd9a3c287adfec53135dde0af2de4bbf4a88b1809aeb&decrypt=1
Return data from local indexes
getmoneysupply 
 Returns current money supply 
 127.0.0.1:3001/ext/getmoneysupply
getdistribution 
 Returns wealth distribution stats 
 127.0.0.1:3001/ext/getdistribution               
getaddress (/ext/getaddress/hash) 
 Returns information for given address 
 127.0.0.1:3001/ext/getaddress/ZMfKQg2QHiQuwsvVT7SMNk7hgMKBzzGJQU
getbalance (/ext/getbalance/hash) 
 Returns current balance of given address 
 127.0.0.1:3001/ext/getbalance/ZMfKQg2QHiQuwsvVT7SMNk7hgMKBzzGJQU
getlasttxs (/ext/getlasttxs/count/min) 
 Returns last [count] transactions greater than [min] 
 Note: returned values are in satoshis 
 127.0.0.1:3001/ext/getlasttxs/10/100
Linking to the block explorer
transaction (/tx/txid) 
127.0.0.1:3001/tx/4805113900ba5f48d04dcd9a3c287adfec53135dde0af2de4bbf4a88b1809aeb
block (/block/hash) 
127.0.0.1:3001/block/0000002a6a67ae30f1d4f78bad0ed51ae6f92acd04e303e2cf7c8c2ae13b46b8
address (/address/hash) 
127.0.0.1:3001/address/ZMfKQg2QHiQuwsvVT7SMNk7hgMKBzzGJQU
qrcode (/qr/hash) 
127.0.0.1:3001/qr/ZMfKQg2QHiQuwsvVT7SMNk7hgMKBzzGJQU