/v1/meta
Service metadata & live sample
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/cosmoschain-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cosmoschain-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cosmoschain-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/cosmoschain-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"sample": {
"chain": "cosmoshub",
"bonded_ratio": 0.9527149386940329
},
"source": "public Cosmos LCD/REST (cosmos.directory proxy), keyless",
"service": "cosmoschain-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/supply": "Total supply of the staking denom + community pool (chain, optional denom).",
"GET /v1/staking": "Bonded/unbonded tokens, bonded ratio, inflation (chain=cosmoshub).",
"GET /v1/governance": "Latest governance proposals, optional status=voting (chain, limit)."
},
"description": "Read the live economic state of any Cosmos SDK chain from public LCD/REST: staking (bonded/unbonded, bonded ratio, inflation), governance proposals, and token supply + community pool — across Cosmos Hub, Osmosis, Celestia, Injective, Juno and more via one chain parameter. The chain-economics and governance layer for Cosmos wallets, stakers and dashboards. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:03:55.688Z",
"request_id": "b02ba8f8-f44a-4ef9-831c-4ce56b62ccf2"
},
"status": "ok",
"message": "Meta",
"success": true
}