Zum Inhalt springen
GET /v1/rpcs

Public RPC endpoints for a chain

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/evmchains-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "rpc": [
            "https://api.mycryptoapi.com/eth",
            "https://cloudflare-eth.com",
            "https://ethereum-rpc.publicnode.com",
            "https://mainnet.gateway.tenderly.co",
            "https://rpc.blocknative.com/boost",
            "https://rpc.flashbots.net",
            "https://rpc.flashbots.net/fast",
            "https://rpc.mevblocker.io",
            "https://rpc.mevblocker.io/fast",
            "https://rpc.mevblocker.io/noreverts",
            "https://rpc.mevblocker.io/fullprivacy",
            "https://eth.drpc.org",
            "https://api.securerpc.com/v1"
        ],
        "name": "Ethereum Mainnet",
        "note": "Public HTTP RPC endpoints (API-key-templated and websocket URLs are excluded).",
        "count": 13,
        "source": "chainid.network",
        "chain_id": 1
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:18.260Z",
        "request_id": "f8526491-b37b-4d24-82fb-62f9653eb1fb"
    },
    "status": "ok",
    "message": "RPC endpoints retrieved successfully",
    "success": true
}