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

API Calls
Return data from coind
- getdifficultyReturns the current difficulty.mainnet.blackcoin.nl/api/getdifficulty
- getconnectioncountReturns the number of connections the block explorer has to other nodes.mainnet.blackcoin.nl/api/getconnectioncount
- getblockcountReturns the current block index.mainnet.blackcoin.nl/api/getblockcount
- getblockhash [index]Returns the hash of the block at [index]; index 0 is the genesis block.mainnet.blackcoin.nl/api/getblockhash?index=5918996
- getblock [hash]Returns information about the block with the given hash.mainnet.blackcoin.nl/api/getblock?hash=cc33a6201d2caa7a3c9e7a88c040e17b2478366c24dd692fcf67722b44b13467
- getrawtransaction [txid] [decrypt]Returns raw transaction representation for given transaction id. decrypt can be set to 0(false) or 2(true).
- getnetworkhashpsReturns the current network hashrate. (hash/s)mainnet.blackcoin.nl/api/getnetworkhashps
Extended API
Return data from local indexes
- getmoneysupplyReturns current money supplymainnet.blackcoin.nl/ext/getmoneysupply
- getdistributionReturns wealth distribution statsmainnet.blackcoin.nl/ext/getdistribution
- getaddress (/ext/getaddress/hash)Returns information for given addressmainnet.blackcoin.nl/ext/getaddress/BKDvboD1CzZ5KycP1FRSXRoi7XXhHoQhS1
- getaddresstxs (/ext/getaddresstxs/hash/start/length)Returns last [length] transactions for address [hash], starting from offset [start]mainnet.blackcoin.nl/ext/getaddresstxs/BKDvboD1CzZ5KycP1FRSXRoi7XXhHoQhS1/0/50
- gettx (/ext/gettx/hash)Returns information for given tx hashmainnet.blackcoin.nl/ext/gettx/8c56c1eb934a6e41b61590a3d16146eddc5455a4fe46418726f67d355429f05e
- getbalance (/ext/getbalance/hash)Returns current balance of given addressmainnet.blackcoin.nl/ext/getbalance/BKDvboD1CzZ5KycP1FRSXRoi7XXhHoQhS1
- getlasttxs (/ext/getlasttxs/min/start/length)Returns last [length] transactions greater than [min] coins, starting from offset [start]Note: [length] is limited to returning 10000 records per query
- getcurrentpriceReturns last known exchange pricemainnet.blackcoin.nl/ext/getcurrentprice
- getnetworkpeersReturns the list of network peers that have connected to the explorer node in the last 24 hoursmainnet.blackcoin.nl/ext/getnetworkpeers
- getbasicstatsReturns basic statistics about the coin including: block count, circulating supply, USD price, USDT pricemainnet.blackcoin.nl/ext/getbasicstats
- getsummaryReturns a summary of coin data including: difficulty, hybrid difficulty, circulating supply, hash rate, USDT price, USD price, network connection count, block countmainnet.blackcoin.nl/ext/getsummary
Linking (GET)
Linking to the block explorer
- transaction (/tx/txid)mainnet.blackcoin.nl/tx/8c56c1eb934a6e41b61590a3d16146eddc5455a4fe46418726f67d355429f05e
- block (/block/hash)mainnet.blackcoin.nl/block/cc33a6201d2caa7a3c9e7a88c040e17b2478366c24dd692fcf67722b44b13467
- address (/address/hash)mainnet.blackcoin.nl/address/BKDvboD1CzZ5KycP1FRSXRoi7XXhHoQhS1
- qrcode (/qr/hash)mainnet.blackcoin.nl/qr/BKDvboD1CzZ5KycP1FRSXRoi7XXhHoQhS1


