/v1/validators
Active validator set ranked by voting power
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/saga-api/v1/validators" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/saga-api/v1/validators", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/saga-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/saga-api/v1/validators",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "The active Saga validator set, ranked by voting power — each validator's moniker, website, voting power (in SAGA), commission rate and status. Pass limit (1-100, default 25).",
"count": 19,
"source": "Saga (ssc-1) LCD",
"validators": [
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Cosmostation",
"website": "https://www.cosmostation.io",
"commission_rate": 0.015,
"operator_address": "sagavaloper1nv7mzp90rjxkgrr7ymcfqufgjeqtr7ptfeflz8",
"voting_power_saga": 10999996.33
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Omnistake.com",
"website": "https://omnistake.com",
"commission_rate": 0,
"operator_address": "sagavaloper1am6qxsfxpzxdk7j8e8s37vs6pe8zr6m922nqte",
"voting_power_saga": 10223017.85
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "NodeStake",
"website": "https://nodestake.org",
"commission_rate": 0.0249,
"operator_address": "sagavaloper19f0w9svr905fhefusyx4z8sf83j6et0gsn0qkm",
"voting_power_saga": 7173184.04
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": " Lavender.Five Nodes 🐝",
"website": "https://www.lavenderfive.com/",
"commission_rate": 0.0275,
"operator_address": "sagavaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zupu4tk",
"voting_power_saga": 4613970.47
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Stakecito Labs",
"website": "https://www.stakecito.com",
"commission_rate": 0.05,
"operator_address": "sagavaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qsdtg4m",
"voting_power_saga": 3504480.03
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "StakingCabin",
"website": "https://stakingcabin.com",
"commission_rate": 0.0275,
"operator_address": "sagavaloper1smw8w75qzprplv5g4afkrjkxz0sh4d84qqz4cw",
"voting_power_saga": 2942648.32
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Nocturnal Labs",
"website": "https://www.nocturnallabs.org",
"commission_rate": 0.0275,
"operator_address": "sagavaloper1axyv94rv40cug6acgh0zlzvq9awf4ajea3yrd4",
"voting_power_sag
…