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

Full details for one EVM chain by chain id

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

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

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

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

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

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

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

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

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

{
    "data": {
        "rpc": [
            "https://mainnet.base.org/",
            "https://developer-access-mainnet.base.org/",
            "https://base.gateway.tenderly.co",
            "https://base-rpc.publicnode.com",
            "https://rpcfree.com/base-rpc",
            "https://rpc.baseazul.dev"
        ],
        "name": "Base",
        "chain": "ETH",
        "source": "chainid.network",
        "faucets": [],
        "chain_id": 8453,
        "info_url": "https://base.org",
        "explorers": [
            {
                "url": "https://basescan.org",
                "name": "basescan",
                "standard": "EIP3091"
            },
            {
                "url": "https://base.blockscout.com",
                "name": "basescout",
                "standard": "EIP3091"
            },
            {
                "url": "https://base.dex.guru",
                "name": "dexguru",
                "standard": "EIP3091"
            },
            {
                "url": "https://base.superscan.network",
                "name": "Routescan",
                "standard": "EIP3091"
            }
        ],
        "network_id": 8453,
        "short_name": "base",
        "native_currency": {
            "name": "Ether",
            "symbol": "ETH",
            "decimals": 18
        }
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:18.109Z",
        "request_id": "6e7e172b-d9de-4833-98d0-5e4d5888f182"
    },
    "status": "ok",
    "message": "Chain retrieved successfully",
    "success": true
}