/v1/meta
Service metadata & live sample
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"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
}