/v1/network
Live consensus overview: head block, current witness, participation, vesting fund
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}