/v1/validators
Bonded validator set by voting power
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/sentinel-api/v1/validators" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sentinel-api/v1/validators", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sentinel-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/sentinel-api/v1/validators",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"chain": "sentinelhub-2",
"count": 20,
"validators": [
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Cosmostation",
"website": "https://www.cosmostation.io",
"voting_power": 1240207904.494854,
"commission_rate": 0.05,
"operator_address": "sentvaloper18tmu0lrfsdvke8e3a3jsd7fq2rs29krf43yj25"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "polkachu.com",
"website": "https://polkachu.com",
"voting_power": 761909531.861446,
"commission_rate": 0.05,
"operator_address": "sentvaloper1zys59g4hh8g26jg4a0pl6f2c6rngfm89ktx3pz"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Stakecito Labs",
"website": "https://www.stakecito.com",
"voting_power": 677584808.825854,
"commission_rate": 0.1,
"operator_address": "sentvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qytddn2"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "🐹 Quokka Stake",
"website": "https://quokkastake.io",
"voting_power": 567931350.329865,
"commission_rate": 0.05,
"operator_address": "sentvaloper1rw9wtyhsus7jvx55v3qv5nzun054ma6kz4237k"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Bitveil",
"website": "https://bitveil.com/",
"voting_power": 544269962.995655,
"commission_rate": 0.1,
"operator_address": "sentvaloper1xmc6yzr95v0w5pcx7k8qx97w69rhc4caclfy9h"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Quasar 🤖🧬🧠",
"website": "https://quasarstaking.ai",
"voting_power": 453728473.648641,
"commission_rate": 0.05,
"operator_address": "sentvaloper18ax4nq7weyt4nkzucuyelqvvq2ptztnzxkf53l"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "DIGGO: Digital Freedom [dvpn-x.com]",
"website": "https://dvpn-x.com",
"voting_power": 435433732.541879,
"commission_rate": 0.05,
"operator_address": "sentvaloper1p7t3k4wktgkhhcq0saq3hrtpnrgsa72rhqayu4"
},
{
"jailed": false,
"status": "BOND_STATUS_BONDED",
"moniker": "Sarmatia Digital",
"website": "https://sarm
…