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

Live consensus overview: head block, current witness, participation, vesting fund

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

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

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

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

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

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

curl "https://api.oanor.com/hivewitness-api/v1/network" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hivewitness-api/v1/network", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hivewitness-api/v1/network");
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/hivewitness-api/v1/network",
    headers={"x-oanor-key": "oanor_test_..."}
)

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

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

{
    "data": {
        "note": "Live Hive consensus overview: the head block, the witness producing it, witness participation over the last 128 slots, the total vesting (staking) fund and the HIVE-per-MVESTS rate used to value witness votes.",
        "source": "Hive RPC",
        "hp_per_mvest": 616.372,
        "current_supply": "554077461.964 HIVE",
        "hbd_print_rate": 0,
        "current_witness": "smooth.witness",
        "head_block_number": 107270475,
        "current_hbd_supply": "32822094.202 HBD",
        "total_vesting_shares": 341214804515.7273,
        "total_vesting_fund_hive": 210315133.784,
        "witness_participation_pct": 100
    },
    "meta": {
        "timestamp": "2026-06-14T17:04:37.451Z",
        "request_id": "119a7493-c881-4734-9c75-4c863f932603"
    },
    "status": "ok",
    "message": "Network retrieved successfully",
    "success": true
}