/v1/search
Search chains by name
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}