Skip to content
GET /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.

Custom headers (optional)
api.oanor.com/juno-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/juno-api/v1/validators" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/juno-api/v1/validators", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/juno-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/juno-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 Juno validator set, ranked by voting power — each validator's moniker, website, voting power (in JUNO), commission rate and status. Pass limit (1-100, default 25).",
        "count": 25,
        "source": "Juno Network (juno-1) LCD",
        "validators": [
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "The_Cybernetics",
                "website": "https://thecybernetics.org",
                "commission_rate": 0.05,
                "operator_address": "junovaloper1yfx5x9cs3nvncprlw0kuw2cgs9qq38uqnwfhd8",
                "voting_power_juno": 5099457.94,
                "max_commission_rate": 0.5
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "DAO DAO",
                "website": "https://daodao.zone",
                "commission_rate": 0.05,
                "operator_address": "junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn",
                "voting_power_juno": 4679662.57,
                "max_commission_rate": 0.2
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "SG-1",
                "website": "https://sg-1.online",
                "commission_rate": 0.05,
                "operator_address": "junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw",
                "voting_power_juno": 3324474.8,
                "max_commission_rate": 0.2
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Kintsugi Nodes",
                "website": "https://kintsugi.tech",
                "commission_rate": 0.1,
                "operator_address": "junovaloper1juczud9nep06t0khghvm643hf9usw45r23gsmr",
                "voting_power_juno": 2206055.5,
                "max_commission_rate": 1
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Allnodes",
                "website": "https://www.allnodes.com/juno",
                "commission_rate": 0.1,
                "operator_address": "junovaloper1v3lnt5cjjk9658yyrv2673pcqx3nzvkg256xjp",
                "voting_power_juno": 1812556.72,
                "max_commission_rate": 1
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "     polkachu.com",
                "website": "https://polkachu.com",
                "commission_rate": 0.05,
                "operator_address": "junovaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pvzc6k3",
                "voting_power_juno": 1719509.9,
                "max_commission_rate": 0.1
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "monike
…