/v1/chain
Full details for one EVM chain by chain id
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}