/v1/validators
Bonded validator set with stake and commission
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/cheqd-api/v1/validators" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cheqd-api/v1/validators", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cheqd-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/cheqd-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": "cheqd",
"validators": [
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "cCDAO validator node 🌟",
"tokens_cheq": "85683610.590405932",
"tokens_ncheq": "85683610590405932",
"commission_rate": 0.1,
"operator_address": "cheqdvaloper1mlul88erx8yrjm3frdpwysddrjqc5rstc9xag3"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Stakewolle.com | 100% Insurance",
"tokens_cheq": "66089315.540586468",
"tokens_ncheq": "66089315540586468",
"commission_rate": 0.05,
"operator_address": "cheqdvaloper17jmj8pkp6s497n0kj50yhm0pt36hsyc2xe82na"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Anonyome Labs",
"tokens_cheq": "44769169.670617981",
"tokens_ncheq": "44769169670617981",
"commission_rate": 0.02,
"operator_address": "cheqdvaloper1djh8syeug9ylw7v8ca6jvq3s59klzmm4fm949w"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "cheqd",
"tokens_cheq": "42514535.377991987",
"tokens_ncheq": "42514535377991987",
"commission_rate": 0.2,
"operator_address": "cheqdvaloper1lg0vwuu888hu4arnt9egtqrm2662kcrtf2unrs"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Vitwit (Previously Witval)",
"tokens_cheq": "19060604.700008596",
"tokens_ncheq": "19060604700008596",
"commission_rate": 0.1,
"operator_address": "cheqdvaloper1svucqaevytxzkp9t2jvkmywj86at7268vwudph"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Citadel.one",
"tokens_cheq": "18628716.187312901",
"tokens_ncheq": "18628716187312901",
"commission_rate": 0.05,
"operator_address": "cheqdvaloper15jeqnr0z4j654a4nex2v3wlf4w8p5pkcer89az"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": " AutoStake 🛡️ Slash Protected",
"tokens_cheq": "17984720.240557842",
"tokens_ncheq": "17984720240557842",
"commission_rate": 0.1,
"operator_address": "cheqdvaloper195dyuqn5hrq8nktwhqpn6uqxtvell0nwynmqaj"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Baby Yoda Ventures",
…