Naar de inhoud
GET /v1/validators

Bonded validator set with stake and commission

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/chihuahua-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/chihuahua-api/v1/validators" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/chihuahua-api/v1/validators", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/chihuahua-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/chihuahua-api/v1/validators",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "chain": "Chihuahua",
        "validators": [
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Cosmostation",
                "tokens_huahua": "3882043662.905187",
                "tokens_uhuahua": "3882043662905187",
                "commission_rate": 0.05,
                "operator_address": "chihuahuavaloper1tgcypttehx3afugys6eq28h0kpmswfkgtten6j"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Stakecito Labs",
                "tokens_huahua": "3480969728.48426",
                "tokens_uhuahua": "3480969728484260",
                "commission_rate": 0.1,
                "operator_address": "chihuahuavaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qshf22j"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "The_Cybernetics",
                "tokens_huahua": "2908455785.576153",
                "tokens_uhuahua": "2908455785576153",
                "commission_rate": 0.05,
                "operator_address": "chihuahuavaloper1cjnwtpj27hpd3ztyuf43um5jgew63p9nh4jjd3"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "  polkachu.com",
                "tokens_huahua": "1711905342.003559",
                "tokens_uhuahua": "1711905342003559",
                "commission_rate": 0.05,
                "operator_address": "chihuahuavaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p40qac2"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "🔥Burning HUAHUA🔥",
                "tokens_huahua": "933425870.987222",
                "tokens_uhuahua": "933425870987222",
                "commission_rate": 0.05,
                "operator_address": "chihuahuavaloper1z6rfp8wzsx87pwt3z73gf2a67d6tgmfrsgzeda"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "   GOAT V 🐐🚀",
                "tokens_huahua": "875706042.711502",
                "tokens_uhuahua": "875706042711502",
                "commission_rate": 0.05,
                "operator_address": "chihuahuavaloper1m4jcru5nsmtzgt4ha8fj4egau3w89cqzdrngnh"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "0base.vc",
                "tokens_huahua": "732071835.030527",
                "tokens_uhuahua": "732071835030527",
                "commission_rate": 0.1,
                "operator_address": "chihuahuavaloper1pzqjgfd25qsyfdtmx9elrqx6zjjvnc9sj52r2y"
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Enigma",
                "tokens_huah
…