/v1/meta
Service metadata & endpoint catalog
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/kujira-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/kujira-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/kujira-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/kujira-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"sample": {
"oracle_denoms": 54
},
"source": "Kujira public Cosmos REST / LCD nodes (kujira-api.polkachu.com and mirrors), keyless",
"service": "kujira-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/block": "Latest block.",
"GET /v1/oracle": "On-chain price oracle — USD rates per asset (denom filter optional).",
"GET /v1/supply": "Total KUJI supply.",
"GET /v1/staking": "Kujira chain staking economics & parameters (no inflation).",
"GET /v1/validators": "Active validator set (limit)."
},
"description": "Live on-chain data for Kujira (the zero-inflation, fee-funded Cosmos DeFi L1, chain kaiyo-1) with no key: the on-chain price oracle (validator-fed USD exchange rates for dozens of assets), the Kujira chain staking economics (no inflation; fee-funded), the active validator set, the total KUJI supply, and the latest block. The Kujira-on-chain / oracle / staking layer for DeFi dashboards, price feeds and research. Distinct from other chain readers — Kujira and its on-chain price oracle. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-15T02:10:31.851Z",
"request_id": "ba680cd0-9b6d-4659-b38d-f061c8c3a3cc"
},
"status": "ok",
"message": "Meta",
"success": true
}