/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/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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}