Ir al contenido
GET /v1/list

Paginated directory of all EVM chains

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/evmchains-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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"
            },
    
…