Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata & live sample

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/eipregistry-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}