/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}