Naar de inhoud
GET /v1/inflation

Monetary inflation & mint parameters

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/akash-api/v1/inflation" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/akash-api/v1/inflation", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/akash-api/v1/inflation");
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/akash-api/v1/inflation",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

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

{
    "data": {
        "note": "The Akash monetary inflation — the current annual inflation rate, the AKT minted per year (annual provisions), and the mint parameters (blocks per year, target bonded ratio, inflation band). No parameters.",
        "params": {
            "mint_denom": "uakt",
            "blocks_per_year": 5256000,
            "goal_bonded_percent": 67,
            "inflation_max_percent": 4,
            "inflation_min_percent": 3
        },
        "source": "Akash Network (akashnet-2) LCD",
        "annual_provisions_akt": 11791649.57,
        "annual_inflation_percent": 4
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:38.316Z",
        "request_id": "adcc702d-68cc-4828-929a-6ab58bf4b876"
    },
    "status": "ok",
    "message": "Inflation retrieved successfully",
    "success": true
}