/v1/meta
Service metadata & endpoint catalog
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/neutron-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/neutron-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/neutron-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/neutron-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": {
"latest_height": 59133940
},
"source": "Neutron public Cosmos REST / LCD nodes (neutron-api.polkachu.com and mirrors), keyless",
"service": "neutron-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/block": "Latest block.",
"GET /v1/supply": "Total NTRN supply.",
"GET /v1/staking": "Staking economics & parameters.",
"GET /v1/validators": "Active validator set (limit).",
"GET /v1/community-pool": "On-chain community pool (treasury)."
},
"description": "Live on-chain data for Neutron (the Cosmos integrated DeFi L1, chain neutron-1) with no key: staking economics (bonded vs unbonded NTRN, bonded ratio, staking parameters), the active validator set (moniker, voting power, commission, status), the total NTRN supply, the on-chain community pool (treasury) holdings, and the latest block. The Neutron-on-chain / staking / treasury layer for explorers, staking dashboards and research. Distinct from other chain readers — the Neutron (neutron-1) network. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-15T02:10:40.186Z",
"request_id": "a40fe9f0-6dab-434b-b8cd-49228e63ff49"
},
"status": "ok",
"message": "Meta",
"success": true
}