/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/hederanetwork-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hederanetwork-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hederanetwork-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/hederanetwork-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"sample": {
"usd_per_hbar": 0.077422
},
"source": "public Hedera Mirror Node (mainnet-public.mirrornode.hedera.com), keyless",
"service": "hederanetwork-api",
"endpoints": {
"GET /v1/fees": "The current network gas fee schedule per transaction type.",
"GET /v1/meta": "This document.",
"GET /v1/nodes": "The council consensus nodes: account, description, stake, rewards (limit).",
"GET /v1/exchangerate": "The network's HBAR/USD rate, current + next, with derived USD price."
},
"description": "Read Hedera's network layer live from the public Hedera Mirror Node: list the council-operated consensus nodes with stake and reward settings, read the live HBAR/USD exchange rate the network pins for fees, and read the current network gas fee schedule. The validator / network / economics layer for Hedera explorers, staking dashboards and analytics. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:04:01.777Z",
"request_id": "7b8a39ef-e5c0-4df1-b278-74d360de93fc"
},
"status": "ok",
"message": "Meta",
"success": true
}