/v1/validators
Bonded validator set with stake and commission
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/nibiru-api/v1/validators" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nibiru-api/v1/validators", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nibiru-api/v1/validators");
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/nibiru-api/v1/validators",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"chain": "Nibiru",
"validators": [
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Nodes.Guru",
"tokens_nibi": "34289493.119788",
"tokens_unibi": "34289493119788",
"commission_rate": 0.05,
"operator_address": "nibivaloper1hvt68he6uvadnk73rjy6hg7a4u2myud5yhj3ae"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "iStake",
"tokens_nibi": "31819077.931273",
"tokens_unibi": "31819077931273",
"commission_rate": 0.05,
"operator_address": "nibivaloper1ew2hw9fakn4m33lzxrhzqhxrwk9na496tpemey"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Nibiru",
"tokens_nibi": "28214576.032808",
"tokens_unibi": "28214576032808",
"commission_rate": 0.05,
"operator_address": "nibivaloper1xwh38k5kulrfglt34qqmnsrrjg788d4azq6e5u"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "polkachu.com",
"tokens_nibi": "24964148.412634",
"tokens_unibi": "24964148412634",
"commission_rate": 0.05,
"operator_address": "nibivaloper1cz36jg407s0z4f2vd7u6yc44v480dtpljrhdf6"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "NodeStake",
"tokens_nibi": "14035106.366708",
"tokens_unibi": "14035106366708",
"commission_rate": 0.05,
"operator_address": "nibivaloper19f0w9svr905fhefusyx4z8sf83j6et0g742nxz"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Stake Shark",
"tokens_nibi": "13108477.57467",
"tokens_unibi": "13108477574670",
"commission_rate": 0.05,
"operator_address": "nibivaloper1a65emwxl5fky9ndgfxl6dw2hj6hmzmqts35hly"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "lesnik | UTSA",
"tokens_nibi": "11568393.077202",
"tokens_unibi": "11568393077202",
"commission_rate": 0.15,
"operator_address": "nibivaloper1he44du3wsg3qgysyj0wlclq20apj880k72m8ks"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "AKNodes",
"tokens_nibi": "11450393.048877",
"tokens_unibi": "11450393048877",
"commission_rate": 0.
…