List the council consensus nodes
API · /hederanetwork-api
Hedera Network & Nodes API
Read Hedera's network layer live from the public Hedera Mirror Node — no key. Hedera runs on a permissioned set of council-operated consensus nodes; the Hedera on-chain reader resolves account, token and HBAR-supply state, but it does not surface the node set, the live HBAR/USD exchange rate the network itself uses, or the current network fee schedule. This opens that. List the consensus nodes with their node id, account, operator description (e.g. "Hosted by Google | US"), current and min/max stake in HBAR, rewarded vs not-rewarded stake and whether they decline rewards; read the live HBAR↔USD rate the network pins for fee calculation — current and next period, with a derived USD-per-HBAR price — the protocol's own oracle rate, not a market ticker; and read the current network gas fee schedule per transaction type. Stake is reported in HBAR (1 HBAR = 100,000,000 tinybars). The network / validator / economics layer for Hedera explorers, staking dashboards, wallets and analytics. Distinct from the Hedera on-chain reader (account / token / supply), the HCS topic reader and the HTS token browser. Live from the mirror node; short cache only.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 123 ms
- Server probes · 24h
- Subscribers
- 4,015
- active
- Total calls
- 24
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 8,400 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 8.4k calls/month
- 3 req/sec
- All endpoints
- No credit card
Starter
€7.90 /month
- 164,000 calls / month
- 10 requests / second
- Hard cap (429 above quota, no overage)
- 164k calls/month
- 10 req/sec
- Email support
Pro
€27.20 /month
- 880,000 calls / month
- 25 requests / second
- Hard cap (429 above quota, no overage)
- 880k calls/month
- 25 req/sec
- Priority support
Scale
€80.50 /month
- 5,300,000 calls / month
- 60 requests / second
- Hard cap (429 above quota, no overage)
- 5.3M calls/month
- 60 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Hedera HTS Token & NFT API
Browse the Hedera Token Service (HTS) live from the public Hedera Mirror Node — no key. The Hedera on-chain reader resolves a single token's details by id and the tokens an account holds, but it cannot browse the token universe, list the serials inside an NFT collection, or list who holds a token. This opens that. Discover and filter HTS tokens — fungible vs NFT collection, search by name; list the minted serials inside any NFT collection, each with its current owner account and decoded per-serial metadata (often an IPFS or HCS pointer) and whether it has been burned; and list the holders of any token with their decimal-adjusted balances, largest first. Every token and account is a shard.realm.num id like 0.0.107597. The discovery and NFT layer for Hedera wallets, token explorers, NFT marketplaces and analytics. Distinct from the Hedera on-chain reader (per-token-id details and per-account holdings) and from the Hedera Consensus Service topic reader. Live from the mirror node; short cache only.
api.oanor.com/hederatokens-api
Hedera Topic API
Read the Hedera Consensus Service (HCS) live from the public Hedera mirror node — no key. HCS is Hedera's signature feature: a decentralized, ordered, timestamped message log that powers audit trails, supply-chain tracking, oracles and tokenization registries — the layer that account- and token-readers miss entirely. Look up any topic for its memo, admin/submit-key control, auto-renew and deleted state; read a topic's most recent messages, decoded from base64 to text, each with its consensus sequence number, timestamp and the account that paid to submit it; or discover the topics that are actively receiving messages right now. The consensus-messaging layer for Hedera wallets, explorers, dApps and auditors. Live from the mirror node; short cache only.
api.oanor.com/hederatopic-api
Hedera API
Live on-chain data from the Hedera network (HBAR), the enterprise public ledger built on hashgraph consensus, via the public Hedera Mirror Node. Hedera identifies every account, token and contract by a shard.realm.num id like 0.0.2 — not a hash address — and this API speaks that native form. Resolve an account's whole state: HBAR balance, the node or account it stakes to, whether it declines rewards and its pending reward, its auto-renew and token-association settings, memo and EVM nonce. Get the HTS tokens an account holds, each decimal-adjusted with token id and freeze/KYC status. Read any HTS token's details — name, symbol, decimals, total and max supply, treasury account and whether it's a fungible token or an NFT collection. Get the live HBAR supply, released and total. Live, no key, nothing stored. Distinct from the XRP Ledger, Stellar, TRON, Aptos, Algorand, Tezos, Cardano, Solana and EVM on-chain APIs and from price feeds — this is Hedera account state, staking, HTS-token holdings, token details and HBAR supply. Perfect for wallets, explorers, treasury, HTS-token and analytics apps.
api.oanor.com/hedera-api
Lightning Network API
Live data for Bitcoin's Lightning Network — the instant-payment layer on top of Bitcoin — served straight from mempool.space's public API, no key, nothing cached. The stats endpoint returns the state of the whole network: how many nodes and payment channels exist, the total capacity locked in Bitcoin, the average and median channel capacity, the average fee rate, and the split between clearnet and Tor nodes — the network runs tens of thousands of channels holding thousands of BTC. The top endpoint is the node league table, ranked by liquidity (capacity) or by connectivity (channel count), with each node's alias, capacity and channel count — Bitfinex and Binance run some of the largest routing nodes. The search endpoint finds nodes by alias and returns their public key, capacity and channel count. This is the routing-and-liquidity layer for any Lightning wallet, node operator, payment or analytics app — who the big routing nodes are and how much capacity the network holds. Live from mempool.space, nothing stored. Distinct from on-chain Bitcoin and fee APIs — this is the Lightning Network layer. 4 endpoints.
api.oanor.com/lightning-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Hedera Network & Nodes API?
What's the rate limit for Hedera Network & Nodes API?
How much does Hedera Network & Nodes API cost?
Can I cancel my subscription anytime?
Is Hedera Network & Nodes API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/hederanetwork-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/hederanetwork-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/hederanetwork-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/hederanetwork-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.