Helium API
Overview
The Helium API provides access to legacy blockchain data for the Helium IoT network — hotspot locations, earnings, network coverage, and device activity. Useful for building dashboards or analytics tools on top of the Helium network.
Beginner Tip
Note that this API covers the legacy Helium L1 blockchain data (pre-2023 Solana migration); for current data, also check the Helium Solana-based APIs and the Nova Labs data endpoints.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Helium",
"description": "Helium is a global, distributed network of Hotspots that create public, long-range wireless coverage",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
address Unique base58-encoded identifier for this Helium hotspot on the blockchain. name Human-readable animal-based name assigned to the hotspot (e.g. 'tall-purple-whale'). status.online 'online' or 'offline' — indicates whether the hotspot is currently connected to the network. location H3 hexagonal grid cell index representing the hotspot's geographic location. reward_scale Multiplier (0.0–1.0) applied to hotspot earnings based on network density in its area. cursor Pagination token; pass as query parameter to retrieve the next page of results. Implementation Example
const url = "https://docs.helium.com/api/blockchain/introduction/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Chainlink
Chainlink is a decentralized oracle network that connects smart contracts to real-world data like price feeds, random numbers, and external APIs.
Chainpoint
⭐ Beginner's PickChainpoint anchors any data hash to the Bitcoin blockchain, creating a tamper-proof proof of existence for documents, records, or any digital content.
Steem
⭐ Beginner's PickSteem is a blockchain-based social media platform with a public API for reading posts, comments, votes, account data, and blockchain operations.
Walltime
Walltime provides programmatic access to to retrieve walltime's market info via REST API.
Bitquery
Bitquery provides GraphQL APIs for querying on-chain data across 40+ blockchains including Ethereum, Solana, and BSC.