Naar de inhoud
GET /v1/meta

Service metadata & endpoint catalog

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "sample": {
            "latest_height": 38880292
        },
        "source": "Juno public Cosmos REST / LCD nodes (juno-api.polkachu.com and mirrors), keyless",
        "service": "juno-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/block": "Latest block.",
            "GET /v1/supply": "Total JUNO supply.",
            "GET /v1/staking": "Staking economics & parameters.",
            "GET /v1/inflation": "Monetary inflation & mint parameters.",
            "GET /v1/governance": "Latest governance proposals (limit).",
            "GET /v1/validators": "Active validator set (limit)."
        },
        "description": "Live on-chain data for Juno Network (the CosmWasm smart-contract hub L1, chain juno-1) with no key: staking economics (bonded vs unbonded JUNO, bonded ratio, staking parameters), the active validator set (moniker, voting power, commission, status), the total JUNO supply, monetary inflation (annual rate, annual provisions, mint parameters), the latest governance proposals, and the latest block. The Juno-on-chain / staking / inflation / governance layer for explorers, staking dashboards and research. Distinct from other chain readers — the Juno (juno-1) network. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:36.807Z",
        "request_id": "170e9020-a3d8-4e2d-ba33-c71471ead389"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}