Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/warden-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/warden-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/warden-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/warden-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": "Warden Protocol Network API",
        "source": "Warden Protocol 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 WARD supply"
            },
            {
                "path": "/v1/governance",
                "description": "Latest governance proposals (?limit=10)"
            },
            {
                "path": "/v1/meta",
                "description": "This metadata document"
            }
        ],
        "disclaimer": "Unofficial proxy of the public Warden Protocol LCD. Not affiliated with Warden Protocol. Data only; no guarantees of accuracy or availability.",
        "description": "On-chain data for Warden Protocol (chain-id warden_8765-1), an EVM-compatible Cosmos-SDK Layer 1 focused on intelligent applications and chain abstraction. Exposes chain status, the validator set, the staking pool, total WARD supply and governance proposals.",
        "native_token": {
            "denom": "award",
            "symbol": "WARD",
            "decimals": 18
        }
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:18.600Z",
        "request_id": "6faf4d1c-07ba-4260-bad4-4bdcde863d40"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}