/v1/search
Search chains by name
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/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/evmchains-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/evmchains-api/v1/search");
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/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 7,
"query": "arbitrum",
"chains": [
{
"name": "Arbitrum on xDai",
"symbol": "xDAI",
"chain_id": 200,
"rpc_count": 1,
"short_name": "aox"
},
{
"name": "Arbitrum One",
"symbol": "ETH",
"chain_id": 42161,
"rpc_count": 3,
"short_name": "arb1"
},
{
"name": "Arbitrum Nova",
"symbol": "ETH",
"chain_id": 42170,
"rpc_count": 2,
"short_name": "arb-nova"
},
{
"name": "Arbitrum Rinkeby",
"symbol": "ETH",
"chain_id": 421611,
"rpc_count": 1,
"short_name": "arb-rinkeby"
},
{
"name": "Arbitrum Goerli",
"symbol": "AGOR",
"chain_id": 421613,
"rpc_count": 2,
"short_name": "arb-goerli"
},
{
"name": "Arbitrum Sepolia",
"symbol": "ETH",
"chain_id": 421614,
"rpc_count": 2,
"short_name": "arb-sep"
},
{
"name": "Arbitrum Blueberry",
"symbol": "CGT",
"chain_id": 88153591557,
"rpc_count": 1,
"short_name": "arb-blueberry"
}
],
"source": "chainid.network",
"matched": 7
},
"meta": {
"timestamp": "2026-06-14T08:04:18.345Z",
"request_id": "4fe56586-4195-40f8-bb0e-4e80a4d11468"
},
"status": "ok",
"message": "Chains retrieved successfully",
"success": true
}