/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/sei-api/v1/validators" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sei-api/v1/validators", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sei-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/sei-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 Sei validator set, ranked by voting power — each validator's moniker, website, voting power (in SEI), commission rate and status. Pass limit (1-100, default 25).",
"count": 25,
"source": "Sei Network (pacific-1) LCD",
"validators": [
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": " RHINO 🦏",
"website": "https://rhinostake.com",
"commission_rate": 0.05,
"operator_address": "seivaloper146m089lq8mkqw6w0mmlhxz6247g2taha89at74",
"voting_power_sei": 213288253.94,
"max_commission_rate": 0.2
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Everstake",
"website": "https://everstake.one",
"commission_rate": 0.05,
"operator_address": "seivaloper1ummny4p645xraxc4m7nphf7vxawfzt3p5hn47t",
"voting_power_sei": 208857484.43,
"max_commission_rate": 0.2
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "STAKEME",
"website": "https://stakeme.pro",
"commission_rate": 0.05,
"operator_address": "seivaloper15xgfk9cnt56xjvqvetjvg3wlqlslfnqfc03dwk",
"voting_power_sei": 164227035.05,
"max_commission_rate": 0.1
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "polkachu.com",
"website": "https://polkachu.com",
"commission_rate": 0.05,
"operator_address": "seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8",
"voting_power_sei": 160489584.44,
"max_commission_rate": 0.2
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Bitwise Onchain Solutions",
"website": "https://onchain.bitwiseinvestments.com",
"commission_rate": 0.05,
"operator_address": "seivaloper16pj5gljqnqs0ajxakccfjhu05yczp98743ctgy",
"voting_power_sei": 154570136.52,
"max_commission_rate": 0.2
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "One Node",
"website": null,
"commission_rate": 0.05,
"operator_address": "seivaloper12kv03zmlsqx8xpkk05d8e9d05jan76wxwtpdpd",
"voting_power_sei": 150065283.49,
"max_commission_rate": 1
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "kingnodes 👑",
…