
Digiwage Public API
A listing of public API endpoints for retrieving Digiwage coin data from the network without the need for a local wallet
API Documentation

API Calls
Return data from coind
- getdifficultyReturns the current difficulty.digiwage.org/api/getdifficulty
- getconnectioncountReturns the number of connections the block explorer has to other nodes.digiwage.org/api/getconnectioncount
- getblockcountReturns the current block index.digiwage.org/api/getblockcount
- getblockhash [index]Returns the hash of the block at [index]; index 0 is the genesis block.digiwage.org/api/getblockhash?index=2000
- getblock [hash]Returns information about the block with the given hash.digiwage.org/api/getblock?hash=43da3dab5c41a0f8c7ee4c0e8788d22d05d407b1ee95ef753788efe1bf24a6cc
- getrawtransaction [txid] [decrypt]Returns raw transaction representation for given transaction id. decrypt can be set to 0(false) or 1(true).
- getnetworkhashpsReturns the current network hashrate. (hash/s)digiwage.org/api/getnetworkhashps
- getvotelistReturns the current vote list.digiwage.org/api/getvotelist
- getmasternodecountReturns the total number of masternodes on the network.digiwage.org/api/getmasternodecount
Extended API
Return data from local indexes
- getmoneysupplyReturns current money supplydigiwage.org/ext/getmoneysupply
- getdistributionReturns wealth distribution statsdigiwage.org/ext/getdistribution
- getaddress (/ext/getaddress/hash)Returns information for given addressdigiwage.org/ext/getaddress/D7w7bzABGDPfzJ2akYrGnahCse5QNXveA5
- getaddresstxs (/ext/getaddresstxs/hash/start/length)Returns last [length] transactions for address [hash], starting from offset [start]digiwage.org/ext/getaddresstxs/D7w7bzABGDPfzJ2akYrGnahCse5QNXveA5/0/50
- gettx (/ext/gettx/hash)Returns information for given tx hashdigiwage.org/ext/gettx/15afb1af4317f548d541247b8da6aae882af74c05173cafad4cbb599020c1665
- getbalance (/ext/getbalance/hash)Returns current balance of given addressdigiwage.org/ext/getbalance/D7w7bzABGDPfzJ2akYrGnahCse5QNXveA5
- getlasttxs (/ext/getlasttxs/min/start/length)Returns last [length] transactions greater than [min] coins, starting from offset [start]Note: [length] is limited to returning 100 records per query
- getcurrentpriceReturns last known exchange pricedigiwage.org/ext/getcurrentprice
- getnetworkpeersReturns the list of network peers that have connected to the explorer node in the last 24 hoursdigiwage.org/ext/getnetworkpeers
- getbasicstatsReturns basic statistics about the coin including: block count, circulating supply, USD price, BTC price, # of masternodesdigiwage.org/ext/getbasicstats
- getsummaryReturns a summary of coin data including: difficulty, hybrid difficulty, circulating supply, hash rate, BTC price, USD price, network connection count, block count, count of online masternodes, count of offline masternodesdigiwage.org/ext/getsummary
- getmasternodelistReturns the complete list of masternodes on the network.digiwage.org/ext/getmasternodelist
- getmasternoderewards (/ext/getmasternoderewards/hash/since)Returns a list of masternode reward transactions for address [hash] that arrived after block height [since]digiwage.org/ext/getmasternoderewards/D7w7bzABGDPfzJ2akYrGnahCse5QNXveA5/2000
- getmasternoderewardstotal (/ext/getmasternoderewardstotal/hash/since)Returns the total number of coins earned in masternode rewards for address [hash] that arrived after block height [since]digiwage.org/ext/getmasternoderewardstotal/D7w7bzABGDPfzJ2akYrGnahCse5QNXveA5/2000
Linking (GET)
Linking to the block explorer
- transaction (/tx/txid)digiwage.org/tx/15afb1af4317f548d541247b8da6aae882af74c05173cafad4cbb599020c1665
- block (/block/hash)digiwage.org/block/43da3dab5c41a0f8c7ee4c0e8788d22d05d407b1ee95ef753788efe1bf24a6cc
- address (/address/hash)digiwage.org/address/D7w7bzABGDPfzJ2akYrGnahCse5QNXveA5
- qrcode (/qr/hash)digiwage.org/qr/D7w7bzABGDPfzJ2akYrGnahCse5QNXveA5


