Aller au contenu
GET /v1/eip

Full metadata + abstract for one proposal

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/eipregistry-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/eipregistry-api/v1/eip" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/eipregistry-api/v1/eip", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/eipregistry-api/v1/eip");
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/eip",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "url": "https://eips.ethereum.org/EIPS/eip-1559",
        "kind": "eip",
        "note": "Canonical metadata and abstract for the proposal, read live from the ethereum/EIPs or ethereum/ERCs repository.",
        "type": "Standards Track",
        "title": "Fee market change for ETH 1.0 chain",
        "author": "Vitalik Buterin (@vbuterin), Eric Conner (@econoar), Rick Dudley (@AFDudley), Matthew Slipper (@mslipper), Ian Norden (@i-norden), Abdelhamid Bakhta (@abdelhamidbakhta)",
        "number": 1559,
        "source": "ethereum/EIPs + ethereum/ERCs",
        "status": "Final",
        "created": "2019-04-13",
        "abstract": "We introduce a new [EIP-2718](./eip-2718.md) transaction type, with the format `0x02 || rlp([chain_id, nonce, max_priority_fee_per_gas, max_fee_per_gas, gas_limit, destination, amount, data, access_list, signature_y_parity, signature_r, signature_s])`. There is a base fee per gas in protocol, which can move up or down each block according to a formula which is a function of gas used in parent block and gas target (block gas limit divided by elasticity multiplier) of parent block. The algorithm results in the base fee per gas increasing when blocks are above the gas target, and decreasing when…",
        "category": "Core",
        "requires": [
            2718,
            2930
        ],
        "source_url": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1559.md",
        "discussions_to": "https://ethereum-magicians.org/t/eip-1559-fee-market-change-for-eth-1-0-chain/2783"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:09.944Z",
        "request_id": "57c5944d-99f1-45df-b397-b35640bc5299"
    },
    "status": "ok",
    "message": "EIP retrieved successfully",
    "success": true
}