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

API Calls
Return data from coind
- getdifficultyReturns the current difficulty.explorer.jumpcoin.net/api/getdifficulty
- getconnectioncountReturns the number of connections the block explorer has to other nodes.explorer.jumpcoin.net/api/getconnectioncount
- getblockcountReturns the current block index.explorer.jumpcoin.net/api/getblockcount
- getblockhash [index]Returns the hash of the block at [index]; index 0 is the genesis block.explorer.jumpcoin.net/api/getblockhash?index=64152
- getblock [hash]Returns information about the block with the given hash.explorer.jumpcoin.net/api/getblock?hash=5aa8f4d7a59590edd52524628359aa9ce25ed1ac12e785bc73a4072594c1f0b3
- getrawtransaction [txid] [decrypt]Returns raw transaction representation for given transaction id. decrypt can be set to 0(false) or 1(true).
- getvotelistReturns the current vote list.explorer.jumpcoin.net/api/getvotelist
Extended API
Return data from local indexes
- getmoneysupplyReturns current money supplyexplorer.jumpcoin.net/ext/getmoneysupply
- getdistributionReturns wealth distribution statsexplorer.jumpcoin.net/ext/getdistribution
- getaddress (/ext/getaddress/hash)Returns information for given addressexplorer.jumpcoin.net/ext/getaddress/Jawfwpfo2gNqu9PhVnpJixBJdjBWQHUJn7
- getaddresstxs (/ext/getaddresstxs/hash/start/length)Returns last [length] transactions for address [hash], starting from offset [start]explorer.jumpcoin.net/ext/getaddresstxs/Jawfwpfo2gNqu9PhVnpJixBJdjBWQHUJn7/0/50
- gettx (/ext/gettx/hash)Returns information for given tx hashexplorer.jumpcoin.net/ext/gettx/e2359da4273d18e1141b7400c8c93cf2e997d93b316d944cbf243aa9184954cd
- getbalance (/ext/getbalance/hash)Returns current balance of given addressexplorer.jumpcoin.net/ext/getbalance/Jawfwpfo2gNqu9PhVnpJixBJdjBWQHUJn7
- 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 priceexplorer.jumpcoin.net/ext/getcurrentprice
- getnetworkpeersReturns the list of network peers that have connected to the explorer node in the last 24 hoursexplorer.jumpcoin.net/ext/getnetworkpeers
Linking (GET)
Linking to the block explorer
- transaction (/tx/txid)explorer.jumpcoin.net/tx/e2359da4273d18e1141b7400c8c93cf2e997d93b316d944cbf243aa9184954cd
- block (/block/hash)explorer.jumpcoin.net/block/5aa8f4d7a59590edd52524628359aa9ce25ed1ac12e785bc73a4072594c1f0b3
- address (/address/hash)explorer.jumpcoin.net/address/Jawfwpfo2gNqu9PhVnpJixBJdjBWQHUJn7
- qrcode (/qr/hash)explorer.jumpcoin.net/qr/Jawfwpfo2gNqu9PhVnpJixBJdjBWQHUJn7

