/v1/network
Live consensus overview: head block, current witness, participation, vesting fund
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}