/v1/meta
Service metadata
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/ergo-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ergo-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ergo-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/ergo-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": {
"model": "extended UTXO (eUTXO)",
"source": "Ergo Platform explorer API (api.ergoplatform.com, live)",
"service": "ergo-api",
"consensus": "Autolykos v2 PoW",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/block": "A single block by header id (id=64 hex).",
"GET /v1/token": "A native token's id, name, decimals, emission and description (id=64 hex).",
"GET /v1/blocks": "Most recent blocks with miner, size, difficulty, reward (limit=10).",
"GET /v1/address": "An address's confirmed ERG balance and native tokens held (address=...).",
"GET /v1/network": "Chain head — best block, difficulty, miner reward."
},
"best_block": 1804874,
"description": "Live on-chain data from the Ergo (ERG) blockchain via the public Ergo Platform explorer API. Ergo is a proof-of-work cryptocurrency built on the extended-UTXO (eUTXO) model with first-class native tokens, Sigma-protocol smart contracts and storage rent. The network endpoint returns the chain head (best block, difficulty, miner reward, latest block); the blocks endpoint returns the most recent blocks with miner, size, difficulty and reward; the block endpoint returns a single block by header id; the address endpoint returns an address's confirmed ERG balance and every native token it holds; the token endpoint returns a native token's id, name, decimals, emission amount and description. Live, no key, nothing stored. Distinct from the Bitcoin, Decred, EOS, Internet Computer and other on-chain APIs and from price feeds — this is Ergo's own extended-UTXO chain, native tokens and PoW layer.",
"native_token": "ERG",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:58:53.054Z",
"request_id": "1a6d6e68-ce5e-4c9c-8a09-718dd36867dc"
},
"status": "ok",
"message": "Meta",
"success": true
}