Unofficial API for Helium Explorer written in Python 3.
See more information at: https://docs.helium.com/api
pip install heliumapipy
Just create a HeliumAPI
object after importing it.
All data is being returned in json
.
from heliumapipy.api import HeliumAPI
api = HeliumAPI()
tokensupply = api.getTokenSupply()
blockheight = api.getBlockHeight()
blockdescription = api.getBlockDescription()
blocktransactions = api.getBlockTranscations('1000000')
richestaccounts = api.getRichestAccounts()
gethotspots = api.getHotspotsByOwnerAddress('13AA8PcAZrsojsBVDy2JGEm242nWQeMmRoYaVndtkGy8dNfkn23')
getactivities = api.getActivitiesByAddress('13AA8PcAZrsojsBVDy2JGEm242nWQeMmRoYaVndtkGy8dNfkn23')