
Rincoin Public API
A listing of public API endpoints for retrieving Rincoin 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.rincoin.org/api/getdifficulty
- getconnectioncountReturns the number of connections the block explorer has to other nodes.explorer.rincoin.org/api/getconnectioncount
- getblockcountReturns the current block index.explorer.rincoin.org/api/getblockcount
- getblockhash [index]Returns the hash of the block at [index]; index 0 is the genesis block.explorer.rincoin.org/api/getblockhash?index=25326
- getblock [hash]Returns information about the block with the given hash.explorer.rincoin.org/api/getblock?hash=00002adfb206d5d942abc963b93fa2edb479eb7b6f589f5318ddda5cd732ec19
- 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)explorer.rincoin.org/api/getnetworkhashps
- getvotelistReturns the current vote list.explorer.rincoin.org/api/getvotelist
Extended API
Return data from local indexes
- getmoneysupplyReturns current money supplyexplorer.rincoin.org/ext/getmoneysupply
- getdistributionReturns wealth distribution statsexplorer.rincoin.org/ext/getdistribution
- getaddress (/ext/getaddress/hash)Returns information for given addressexplorer.rincoin.org/ext/getaddress/rin1qkyjxht4d8zpn32gn2p2sg8tl5wzdc5vs53xlgw
- getaddresstxs (/ext/getaddresstxs/hash/start/length)Returns last [length] transactions for address [hash], starting from offset [start]explorer.rincoin.org/ext/getaddresstxs/rin1qkyjxht4d8zpn32gn2p2sg8tl5wzdc5vs53xlgw/0/50
- gettx (/ext/gettx/hash)Returns information for given tx hashexplorer.rincoin.org/ext/gettx/7812e140ca94b3b59ebf1d521832be0791b126e10207530a358f9bd0aa3f2e90
- getbalance (/ext/getbalance/hash)Returns current balance of given addressexplorer.rincoin.org/ext/getbalance/rin1qkyjxht4d8zpn32gn2p2sg8tl5wzdc5vs53xlgw
- 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.rincoin.org/ext/getcurrentprice
- getnetworkpeersReturns the list of network peers that have connected to the explorer node in the last 24 hoursexplorer.rincoin.org/ext/getnetworkpeers
- getbasicstatsReturns basic statistics about the coin including: block count, circulating supply, USD price, BTC priceexplorer.rincoin.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 countexplorer.rincoin.org/ext/getsummary
Linking (GET)
Linking to the block explorer
- transaction (/tx/txid)explorer.rincoin.org/tx/7812e140ca94b3b59ebf1d521832be0791b126e10207530a358f9bd0aa3f2e90
- block (/block/hash)explorer.rincoin.org/block/00002adfb206d5d942abc963b93fa2edb479eb7b6f589f5318ddda5cd732ec19
- address (/address/hash)explorer.rincoin.org/address/rin1qkyjxht4d8zpn32gn2p2sg8tl5wzdc5vs53xlgw
- qrcode (/qr/hash)explorer.rincoin.org/qr/rin1qkyjxht4d8zpn32gn2p2sg8tl5wzdc5vs53xlgw

