/v1/list
Paginated directory of all EVM chains
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/list" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/evmchains-api/v1/list", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/evmchains-api/v1/list");
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/list",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "All EVM chains, ordered by chain id. Use offset/limit to page.",
"count": 50,
"total": 2651,
"chains": [
{
"name": "Ethereum Mainnet",
"symbol": "ETH",
"chain_id": 1,
"rpc_count": 13,
"short_name": "eth"
},
{
"name": "Expanse Network",
"symbol": "EXP",
"chain_id": 2,
"rpc_count": 1,
"short_name": "exp"
},
{
"name": "Ropsten",
"symbol": "ETH",
"chain_id": 3,
"rpc_count": 0,
"short_name": "rop"
},
{
"name": "Rinkeby",
"symbol": "ETH",
"chain_id": 4,
"rpc_count": 0,
"short_name": "rin"
},
{
"name": "Goerli",
"symbol": "ETH",
"chain_id": 5,
"rpc_count": 3,
"short_name": "gor"
},
{
"name": "Kotti Testnet",
"symbol": "KOT",
"chain_id": 6,
"rpc_count": 0,
"short_name": "kot"
},
{
"name": "ThaiChain",
"symbol": "TCH",
"chain_id": 7,
"rpc_count": 2,
"short_name": "tch"
},
{
"name": "Ubiq",
"symbol": "UBQ",
"chain_id": 8,
"rpc_count": 2,
"short_name": "ubq"
},
{
"name": "Quai Network Mainnet",
"symbol": "QUAI",
"chain_id": 9,
"rpc_count": 1,
"short_name": "quai"
},
{
"name": "OP Mainnet",
"symbol": "ETH",
"chain_id": 10,
"rpc_count": 4,
"short_name": "oeth"
},
{
"name": "Metadium Mainnet",
"symbol": "META",
"chain_id": 11,
"rpc_count": 1,
"short_name": "meta"
},
{
"name": "Metadium Testnet",
"symbol": "KAL",
"chain_id": 12,
"rpc_count": 1,
"short_name": "kal"
},
{
"name": "Diode Testnet Staging",
"symbol": "sDIODE",
"chain_id": 13,
"rpc_count": 1,
"short_name": "dstg"
},
{
"name": "Flare Mainnet",
"symbol": "FLR",
"chain_id": 14,
"rpc_count": 9,
"short_name": "flr"
},
…