/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/elys-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/elys-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/elys-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/elys-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": "Elys Network API",
"source": "Elys Network public LCD/REST",
"endpoints": [
{
"path": "/v1/status",
"description": "Latest block height, time and chain id"
},
{
"path": "/v1/validators",
"description": "Validator set (?status=BOND_STATUS_BONDED)"
},
{
"path": "/v1/staking-pool",
"description": "Bonded / not-bonded staking pool and bonded ratio"
},
{
"path": "/v1/supply",
"description": "Total ELYS supply"
},
{
"path": "/v1/assets",
"description": "Full multi-asset on-chain supply (ELYS, IBC and LP denoms)"
},
{
"path": "/v1/governance",
"description": "Latest governance proposals (?limit=10)"
},
{
"path": "/v1/meta",
"description": "This metadata document"
}
],
"disclaimer": "Unofficial proxy of the public Elys Network LCD. Not affiliated with Elys Network. Data only; no guarantees of accuracy or availability.",
"description": "On-chain data for Elys Network (chain-id elys-1), a Cosmos-SDK DeFi Layer 1 with an AMM, perpetuals and leveraged liquidity, native token ELYS. Exposes chain status, the validator set, the staking pool, ELYS supply, the full multi-asset on-chain supply and governance proposals.",
"native_token": {
"denom": "uelys",
"symbol": "ELYS",
"decimals": 6
}
},
"meta": {
"timestamp": "2026-06-15T11:15:16.586Z",
"request_id": "db0efaaf-3c9b-40d1-a08e-245a7deba730"
},
"status": "ok",
"message": "Meta",
"success": true
}