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/archway-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/archway-api/v1/validators" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/archway-api/v1/validators", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/archway-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/archway-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": "archway-1",
        "count": 20,
        "validators": [
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "DELIGHT",
                "website": null,
                "voting_power": 39548775.04081592,
                "commission_rate": 0.05,
                "operator_address": "archwayvaloper1qsw3w58yaca87v0g86eqsec0rjxegzjd75gvt4"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Astrovault",
                "website": null,
                "voting_power": 35770339.91261777,
                "commission_rate": 0.08,
                "operator_address": "archwayvaloper1ra4y9k2lle29ztcztcf7chvr7ayjr7uvrj9lam"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Alphabet",
                "website": "https://alphab.ai/s/m/archway/",
                "voting_power": 18387838.181496657,
                "commission_rate": 0.05,
                "operator_address": "archwayvaloper16vh6jdzrvda47stsjlxap6yukh5pq4q06sgcm6"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "CroutonDigital",
                "website": "https://crouton.digital",
                "voting_power": 16007767.588643247,
                "commission_rate": 0.1,
                "operator_address": "archwayvaloper1hccgnft2asahy7hxrk4fx2y6nndk3rwre387zm"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "MZONDER",
                "website": null,
                "voting_power": 15076458.257042658,
                "commission_rate": 0.1,
                "operator_address": "archwayvaloper1judfxhsvzckqzhd4l3wdwrtn3prggjdq28yc6j"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Contribution DAO",
                "website": "https://contributiondao.com",
                "voting_power": 15023041.066747414,
                "commission_rate": 0.1,
                "operator_address": "archwayvaloper1eze2npmnmu4mu5gklw02rnp6sa6cqysn8kxjsh"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "NacionCrypto - Parceros",
                "website": "www.decry.io",
                "voting_power": 14799616.39289036,
                "commission_rate": 0.05,
                "operator_address": "archwayvaloper1skc8aut895jvg4hdxx7q89sus5x63ede7qxs2c"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Crosnest",
                "website": "https://www.cros-nest.com",
                "voting_power": 14299514.21
…