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

API Calls
Return data from coind
- getdifficultyReturns the current difficulty.nova.y-chain.net/api/getdifficulty
- getconnectioncountReturns the number of connections the block explorer has to other nodes.nova.y-chain.net/api/getconnectioncount
- getblockcountReturns the current block index.nova.y-chain.net/api/getblockcount
- getblockhash [index]Returns the hash of the block at [index]; index 0 is the genesis block.nova.y-chain.net/api/getblockhash?index=64152
- getblock [hash]Returns information about the block with the given hash.nova.y-chain.net/api/getblock?hash=00000000096d72e771ec0204d2781ef51d7d22b1d0cae544ad26c7d05e35e398
- getrawtransaction [txid] [decrypt]Returns raw transaction representation for given transaction id. decrypt can be set to 0(false) or 1(true).
Extended API
Return data from local indexes
- getdistributionReturns wealth distribution statsnova.y-chain.net/ext/getdistribution
- getaddress (/ext/getaddress/hash)Returns information for given addressnova.y-chain.net/ext/getaddress/4SWAPxopn67fmorSVcJEjhxUJ7yNgAD3Sz
- getaddresstxs (/ext/getaddresstxs/hash/start/length)Returns last [length] transactions for address [hash], starting from offset [start]nova.y-chain.net/ext/getaddresstxs/4SWAPxopn67fmorSVcJEjhxUJ7yNgAD3Sz/0/50
- gettx (/ext/gettx/hash)Returns information for given tx hashnova.y-chain.net/ext/gettx/9ffcf4b7c8a2e17a2776f7e8aaa0852ed2a7f80386bfc0d63991aac21dbdfe1e
- getbalance (/ext/getbalance/hash)Returns current balance of given addressnova.y-chain.net/ext/getbalance/4SWAPxopn67fmorSVcJEjhxUJ7yNgAD3Sz
- 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 pricenova.y-chain.net/ext/getcurrentprice
- getbasicstatsReturns basic statistics about the coin including: block count, circulating supply, USD price, BTC pricenova.y-chain.net/ext/getbasicstats
- getsummaryReturns a summary of coin data including: difficulty, hybrid difficulty, circulating supply, hash rate, BTC price, USD price, network connection count, block countnova.y-chain.net/ext/getsummary
Linking (GET)
Linking to the block explorer
- transaction (/tx/txid)nova.y-chain.net/tx/9ffcf4b7c8a2e17a2776f7e8aaa0852ed2a7f80386bfc0d63991aac21dbdfe1e
- block (/block/hash)nova.y-chain.net/block/00000000096d72e771ec0204d2781ef51d7d22b1d0cae544ad26c7d05e35e398
- address (/address/hash)nova.y-chain.net/address/4SWAPxopn67fmorSVcJEjhxUJ7yNgAD3Sz
- qrcode (/qr/hash)nova.y-chain.net/qr/4SWAPxopn67fmorSVcJEjhxUJ7yNgAD3Sz



