/v1/rpcs
Public RPC endpoints for a chain
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}