/v1/validators
Validator set
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/warden-api/v1/validators" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/warden-api/v1/validators", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/warden-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/warden-api/v1/validators",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 34,
"status": "BOND_STATUS_BONDED",
"validators": [
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"details": null,
"moniker": "WardenLabs",
"website": "https://wardenprotocol.org",
"ward_tokens": 5286660.67613,
"commission_rate": 0.1,
"operator_address": "wardenvaloper1qvyu97ps4sgqnsapvdv9akkarythawx7927ukx"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"details": "We operate state-of-the-art distributed and redundant validator and IBC relayer infrastructure for Proof of Stake Blockchains.",
"moniker": "Crosnest",
"website": "https://cros-nest.com",
"ward_tokens": 4526043.62171,
"commission_rate": 0.05,
"operator_address": "wardenvaloper1sqmd7h42xvhlptdututaqs07xmzjxkjw39flus"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"details": "The official validator node from Coinage (Coinage.Media) run by DAIC (https://daic.capital/telegram)",
"moniker": "Coinage x DAIC",
"website": "www.daic.capital",
"ward_tokens": 4053124.999959,
"commission_rate": 0.05,
"operator_address": "wardenvaloper18af4n7wyu2wv8rpxyjvn3e4v8gm55333rneynf"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"details": "Citadel.one is a multi-asset non-custodial staking platform that lets anyone become a part of decentralized infrastructure and earn passive income. Stake with our nodes or any other validator across multiple networks in a few clicks",
"moniker": "Citadel.one",
"website": "https://citadel.one",
"ward_tokens": 4009472.437804,
"commission_rate": 0.05,
"operator_address": "wardenvaloper17xq4uj9nn4u6ja5ejdyhfzgsymwerghwn24md7"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"details": "Positiva Lab Validator. Blockchain developers focused on chain monitoring and statistics. Check out our website for more info",
"moniker": "POSITIVA",
"website": "https://positiva.pro",
"ward_tokens": 4000011.605,
"commission_rate": 0.1,
"operator_address": "wardenvaloper1swvx6xmspmsra968fk7y5hznwqmq09jlyk22ax"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"details": "Trusted Blockchain Validator & Proof-of-Stake chain service provider",
"moniker": "Unity Nodes",
"websi
…