Skip to content
GET /v1/inflation

Monetary inflation & mint parameters

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/juno-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "The Juno monetary inflation — the current annual inflation rate, the JUNO minted per year (annual provisions), and the mint parameters (blocks per year, target bonded ratio, inflation band). No parameters.",
        "params": {
            "mint_denom": "ujuno",
            "blocks_per_year": 10096186,
            "goal_bonded_percent": null,
            "inflation_max_percent": null,
            "inflation_min_percent": null
        },
        "source": "Juno Network (juno-1) LCD",
        "annual_provisions_juno": 10458866.11,
        "annual_inflation_percent": 8
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:36.532Z",
        "request_id": "e0e132f2-b925-4132-80d0-6c0d17edab1b"
    },
    "status": "ok",
    "message": "Inflation retrieved successfully",
    "success": true
}