/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/initia-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/initia-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/initia-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/initia-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"name": "Initia Network API",
"note": "Initia uses the custom initia.mstaking module (multi-token staking) rather than the standard Cosmos staking module.",
"source": "Initia public LCD/REST (rest.initia.xyz)",
"endpoints": [
{
"path": "/v1/status",
"description": "Latest block height, time and chain id"
},
{
"path": "/v1/validators",
"description": "mstaking validators (?status=BOND_STATUS_BONDED)"
},
{
"path": "/v1/staking-pool",
"description": "Bonded / not-bonded staking pool tokens"
},
{
"path": "/v1/supply",
"description": "Total INIT supply"
},
{
"path": "/v1/governance",
"description": "Latest governance proposals (?limit=10)"
},
{
"path": "/v1/meta",
"description": "This metadata document"
}
],
"disclaimer": "Unofficial proxy of the public Initia LCD. Not affiliated with Initia. Data only; no guarantees of accuracy or availability.",
"description": "On-chain data for Initia (chain-id interwoven-1), a Cosmos-SDK Layer 1 with multi-token staking (mstaking) and a MoveVM execution layer. Exposes chain status, validators, the staking pool, INIT supply and governance.",
"native_token": {
"denom": "uinit",
"symbol": "INIT",
"decimals": 6
}
},
"meta": {
"timestamp": "2026-06-15T11:15:24.680Z",
"request_id": "1f172c48-d446-4be4-9534-708c4c2657f7"
},
"status": "ok",
"message": "Meta",
"success": true
}