/v1/centralization
Stake centralisation incl. Nakamoto coefficient
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/solanavalidators-api/v1/centralization" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/solanavalidators-api/v1/centralization", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/solanavalidators-api/v1/centralization");
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/solanavalidators-api/v1/centralization",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Nakamoto coefficient = fewest validators controlling >1/3 of stake (the share that could halt Solana under BFT); higher is more decentralised.",
"source": "Solana RPC",
"top1_share_pct": 3.6,
"top10_share_pct": 23.76,
"top20_share_pct": 35.01,
"validator_count": 722,
"delinquent_count": 49,
"herfindahl_index": 99,
"nakamoto_coefficient": 19,
"total_active_stake_sol": 424047658.84
},
"meta": {
"timestamp": "2026-06-12T01:41:20.044Z",
"request_id": "d81c7b43-1b21-4bea-b3a7-51f300905f6e"
},
"status": "ok",
"message": "Centralization retrieved successfully",
"success": true
}