Skip to content
GET /v1/validators

Bonded validator set 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/coreum-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/coreum-api/v1/validators" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coreum-api/v1/validators", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coreum-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/coreum-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": "coreum-mainnet-1",
        "count": 20,
        "validators": [
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "007TX",
                "website": "https://x.com/007TXValidator",
                "voting_power": 442646469.097159,
                "commission_rate": 0.05,
                "operator_address": "corevaloper1x9hd9r7duv2gagztvvqlw94v5gy4zd9xwhqnlm"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "BRW Capital",
                "website": "https://x.com/BRW_Solo",
                "voting_power": 208174251.245463,
                "commission_rate": 0.05,
                "operator_address": "corevaloper1p2zujexcdg7vuxjkfvahnwhutqradsjfzp6r99"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "cosmosrescue",
                "website": "https://cosmosrescue.com",
                "voting_power": 41770876.094578,
                "commission_rate": 0.05,
                "operator_address": "corevaloper1xrd2petz764advyjm7ftu37jn32ueglqe7qyeg"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "ECO Stake 🌱 | REStake.app",
                "website": "https://ecostake.com",
                "voting_power": 33680990.885818,
                "commission_rate": 0.05,
                "operator_address": "corevaloper1py9v5f7e4aaka55lwtthk30scxhnqfa6agwxt8"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Allnodes",
                "website": "https://www.allnodes.com/core",
                "voting_power": 32826751.336957,
                "commission_rate": 0.1,
                "operator_address": "corevaloper1pulqspt7t3tcnvcde38hmyngj0x43y0ujsvfus"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "SOLONATIONLABS",
                "website": "https://tx.solonation.io",
                "voting_power": 32228768.446747,
                "commission_rate": 0.05,
                "operator_address": "corevaloper1gsaxrwfu5glgw764mqhc4t8f3yxg2h07rmwt0k"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Synchrotron",
                "website": "https://twitter.com/gosynchrotron",
                "voting_power": 21342072.717725,
                "commission_rate": 0.05,
                "operator_address": "corevaloper1r4k9kr6sugcj9pmvtza93eaats6qwxwck8saak"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Huobi",
                "website": "https://www.huobi.c
…