Naar de inhoud
GET /v1/config

Network staking config: stake bounds, lockup, reward rate, epoch

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/aptosvalidators-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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
}