Naar de inhoud
GET /v1/network

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

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/hivewitness-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

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