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

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

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/eipregistry-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/eipregistry-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/eipregistry-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/eipregistry-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": {
            "title": "Fee market change for ETH 1.0 chain",
            "number": 1559,
            "status": "Final"
        },
        "source": "ethereum/EIPs + ethereum/ERCs (raw frontmatter + git tree), live",
        "service": "eipregistry-api",
        "endpoints": {
            "GET /v1/eip": "Full metadata + abstract for one proposal (number=1559).",
            "GET /v1/list": "Catalog of all EIP/ERC numbers (kind=all|eip|erc, limit, offset).",
            "GET /v1/meta": "This document.",
            "GET /v1/batch": "Metadata for several proposals at once (numbers=20,721,1559; max 12)."
        },
        "description": "A live, queryable index of every Ethereum Improvement Proposal (EIP) and ERC token standard, read keyless from the canonical ethereum/EIPs and ethereum/ERCs repos. Look up a proposal by number (title/status/type/category/author/created/requires/abstract), pull several at once, or list the whole catalog. The reference layer for wallets, explorers and docs tooling. Live, lightly cached.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:10.067Z",
        "request_id": "bb2031bb-bcb7-4743-969c-d8a0ebf66605"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}