Zum Inhalt springen
GET /v1/search

Search chains by name

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/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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}