/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}