/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/xion-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/xion-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/xion-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/xion-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"name": "XION Network API",
"source": "XION public LCD/REST (api.xion-mainnet-1.burnt.com)",
"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 XION supply"
},
{
"path": "/v1/governance",
"description": "Latest governance proposals (?limit=10)"
},
{
"path": "/v1/meta",
"description": "This metadata document"
}
],
"disclaimer": "Unofficial proxy of the public XION LCD. Not affiliated with XION / Burnt Labs. Data only; no guarantees of accuracy or availability.",
"description": "On-chain data for XION (chain-id xion-mainnet-1), a Cosmos-SDK Layer 1 with a generalized abstraction layer and native account abstraction. Exposes chain status, the validator set, the staking pool, total XION supply and governance proposals.",
"native_token": {
"denom": "uxion",
"symbol": "XION",
"decimals": 6
}
},
"meta": {
"timestamp": "2026-06-15T11:15:22.345Z",
"request_id": "2ebbf3d4-aad4-4fb9-8b5b-4927a8d2a8b0"
},
"status": "ok",
"message": "Meta",
"success": true
}