/v1/validators
Validator set
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/xion-api/v1/validators" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/xion-api/v1/validators", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/xion-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/xion-api/v1/validators",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 32,
"status": "BOND_STATUS_BONDED",
"validators": [
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"details": "Institutional-grade staking services and Web3 infrastructure provider. T&Cs apply, visit our website.",
"moniker": "Stakin by The Tie",
"website": "https://stakin.com",
"xion_tokens": 6415810.883777,
"commission_rate": 0.05,
"delegator_shares": 6415810883777,
"operator_address": "xionvaloper1pxk78p2hents9935a5ust8xy39c5xgpkcsz0r9"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"details": "Trusted security provider for projects building on Cosmos and CosmWasm. We combine security research with a realistic approach to whether minimise risks and increase security awareness.",
"moniker": "SCV-Security",
"website": "www.scv.services",
"xion_tokens": 5895461.1508,
"commission_rate": 0.05,
"delegator_shares": 5895461150800,
"operator_address": "xionvaloper1tsch433esuruhwzee3ya8ea3q3vr4hukqaqktz"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"details": "Hex Trust is a fully licensed digital asset custodian dedicated to providing solutions for protocols, foundations, financial institutions, and the Web3 ecosystem.",
"moniker": "Hex Trust",
"website": "https://hextrust.com",
"xion_tokens": 4973450.536531,
"commission_rate": 0.05,
"delegator_shares": 4978428963436.255,
"operator_address": "xionvaloper18hj7x8dlchh77dd2k9wr7dqvygmmpxrpxtzql9"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"details": "Fortifying crypto networks with Horcrux security, slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.",
"moniker": " Lavender.Five Nodes 🐝",
"website": "https://www.lavenderfive.com/",
"xion_tokens": 4645756.378873,
"commission_rate": 0.05,
"delegator_shares": 4645756378873,
"operator_address": "xionvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z9nzqce"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
"moniker": "polkachu.com",
"website": "https://polkachu.com",
"xion_tokens": 4557536.482853,
"commission_r
…