/v1/config
Network staking config: stake bounds, lockup, reward rate, epoch
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/aptosvalidators-api/v1/config" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aptosvalidators-api/v1/config", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aptosvalidators-api/v1/config");
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/aptosvalidators-api/v1/config",
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": "Network-wide Aptos staking parameters from on-chain staking_config plus the current epoch. Stakes are in APT; reward_rate_per_epoch is the fractional reward minted to stake each epoch (~2h on mainnet).",
"epoch": 16169,
"source": "Aptos fullnode",
"total_staked_apt": 764150366.7672865,
"maximum_stake_apt": 50000000,
"minimum_stake_apt": 1000000,
"recurring_lockup_days": 14,
"recurring_lockup_secs": 1209600,
"reward_rate_per_epoch": 1.5981e-5,
"active_validator_count": 97,
"last_reconfiguration_time": "1781423914776148",
"allow_validator_set_change": true,
"voting_power_increase_limit_pct": 10
},
"meta": {
"timestamp": "2026-06-14T08:03:49.061Z",
"request_id": "a155c3f8-2df0-4bda-b51c-d01184f7ae58"
},
"status": "ok",
"message": "Staking config retrieved successfully",
"success": true
}