Naar de inhoud
GET /v1/validator

Validator full state

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "jailed": false,
        "source": "Cosmos Hub",
        "status": "BOND_STATUS_BONDED",
        "details": "Coinbase maintains world-class, enterprise-grade staking infrastructure across multiple networks with zero slashing events and a 99% uptime guarantee.",
        "moniker": "Coinbase01",
        "website": "https://coinbase.com/staking",
        "identity": "C73F1C17F994AB30",
        "delegator_shares": 65420964.62,
        "operator_address": "cosmosvaloper10sjr8xv2yr83agmzw7acf6xxqrw8e3q6wvh5ne",
        "voting_power_atom": 65420964.615892,
        "commission_max_pct": 100,
        "commission_rate_pct": 20
    },
    "meta": {
        "timestamp": "2026-06-10T05:17:38.101Z",
        "request_id": "7edd7e83-3679-4946-b152-4b4dd2b43901"
    },
    "status": "ok",
    "message": "Validator retrieved successfully",
    "success": true
}