Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/hederanetwork-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}