/v1/validators
Jito-running validators ranked by stake, with MEV commission
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/jito-api/v1/validators" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/jito-api/v1/validators", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/jito-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/jito-api/v1/validators",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "Solana validators running the Jito MEV client, ranked by active stake — each with its MEV commission (the cut it takes from MEV before sharing with stakers), its priority-fee commission, its Jito-directed stake and this epoch's MEV rewards so far. This is the MEV configuration of Solana's validator set (distinct from raw stake decentralisation). mev_rewards_epoch resets each epoch and accrues through it. Pass limit (1-100, default 25). Live, cached ~30s.",
"count": 25,
"source": "Jito public API (kobe.mainnet.jito.network/validators), keyless",
"validators": [
{
"identity": "HEL1USMZKAL2odpNBj2oCjffnFGaYwmbGmyewGv1e2TU",
"running_bam": false,
"vote_account": "he1iusunGwqrNtafDtLdhsUQDFvo13z9sUa36PauBtk",
"active_stake_sol": 15278454,
"mev_rewards_epoch": 0,
"mev_commission_pct": 0,
"jito_directed_stake_sol": 0,
"priority_fee_commission_pct": 100
},
{
"identity": "Fd7btgySsrjuo25CJCj7oE7VPMyezDhnx7pZkj2v69Nk",
"running_bam": false,
"vote_account": "CcaHc2L43ZWjwCHART3oZoJvHLAe9hzT2DJNUpBzoTN1",
"active_stake_sol": 14814793,
"mev_rewards_epoch": 0,
"mev_commission_pct": 7,
"jito_directed_stake_sol": 0,
"priority_fee_commission_pct": 100
},
{
"identity": "DRpbCBMxVnDK7maPM5tGv6MvB3v1sRMC86PZ8okm21hy",
"running_bam": true,
"vote_account": "3N7s9zXMZ4QqvHQR15t5GNHyqc89KduzMP7423eWiD5g",
"active_stake_sol": 13389640,
"mev_rewards_epoch": 0,
"mev_commission_pct": 0,
"jito_directed_stake_sol": 0,
"priority_fee_commission_pct": 100
},
{
"identity": "JupmVLmA8RoyTUbTMMuTtoPWHEiNQobxgTeGTrPNkzT",
"running_bam": false,
"vote_account": "CatzoSMUkTRidT5DwBxAC2pEtnwMBTpkCepHkFgZDiqb",
"active_stake_sol": 12833260,
"mev_rewards_epoch": 0,
"mev_commission_pct": 0,
"jito_directed_stake_sol": 0,
"priority_fee_commission_pct": 100
},
{
"identity": "q9XWcZ7T1wP4bW9SB4XgNNwjnFEJ982nE8aVbbNuwot",
"running_bam": false,
"vote_account": "26pV97Ce83ZQ6Kz9XT4td8tdoUFPTng8Fb8gPyc53dJx",
"active_stake_sol": 9122718,
"mev_rewards_epoch": 0,
"mev_commission_pct": 7,
"jito_directed_stake_sol": 0,
"priority_fee_commission_pct": 100
},
{
"identity": "E1r4Psq84tHfQ6aPTvvDka4U3u8zPVD7gEUrH25RdxHL",
"running_bam": false,
"v
…