Vai al contenuto
GET /v1/meta

Service metadata & endpoint catalog

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/mantra-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "sample": {
            "latest_height": 15709154
        },
        "source": "MANTRA public Cosmos REST / LCD nodes (mantra-api.polkachu.com and mirrors), keyless",
        "service": "mantra-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/block": "Latest block.",
            "GET /v1/supply": "Total OM 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 MANTRA Chain (the real-world-asset (RWA) tokenization L1, chain mantra-1) with no key: staking economics (bonded vs unbonded OM, bonded ratio, staking parameters), the active validator set (moniker, voting power, commission, status), the total OM supply, monetary inflation (annual rate, annual provisions, mint parameters), the latest governance proposals, and the latest block. The MANTRA-on-chain / staking / inflation / governance layer for explorers, staking dashboards and research. Distinct from other chain readers — the MANTRA (mantra-1) RWA network. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:26.722Z",
        "request_id": "7ced2975-da94-403c-9b9b-1175d012cb2b"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}