Ir al contenido
GET /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.

Encabezados personalizados (opcional)
api.oanor.com/dymension-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/dymension-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dymension-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dymension-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/dymension-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": 21255606
        },
        "source": "Dymension public Cosmos REST / LCD nodes (dymension-api.polkachu.com and mirrors), keyless",
        "service": "dymension-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/block": "Latest block.",
            "GET /v1/supply": "Total DYM supply.",
            "GET /v1/staking": "Dymension hub staking economics & parameters.",
            "GET /v1/rollapps": "RollApp registry — every RollApp on the hub (limit).",
            "GET /v1/validators": "Active validator set (limit)."
        },
        "description": "Live on-chain data for Dymension (the modular RollApp settlement layer L1, chain dymension_1100-1) with no key: the RollApp registry (every RollApp on the hub, with id, owner, description and website), the Dymension hub staking economics (bonded vs unbonded DYM, bonded ratio, parameters), the active validator set, the total DYM supply, and the latest block. The Dymension-RollApp / on-chain / staking layer for explorers, ecosystem dashboards and research. Distinct from other chain readers — Dymension and its RollApp registry. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:30.262Z",
        "request_id": "de1f6110-f0e3-4598-9c87-19006cd93585"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}