/v1/rpcs
Public RPC endpoints for a chain
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/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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}