Ir al contenido
GET /v1/chains

Blockchains ranked by cross-chain activity (24h)

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/wormhole-api

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/wormhole-api/v1/chains" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wormhole-api/v1/chains", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wormhole-api/v1/chains");
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/wormhole-api/v1/chains",
    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": "Blockchains ranked by their Wormhole cross-chain transfer activity over the last 24 hours — the number of transfers leaving each chain (as the source/emitter) and the dollar volume — showing which ecosystems are the busiest exporters of value across chains. Volumes are converted from Wormhole's fixed-point to US dollars. Live, cached ~60s.",
        "count": 24,
        "chains": [
            {
                "chain": "Solana",
                "chain_id": 1,
                "transfers": 343,
                "volume_usd": 2814289
            },
            {
                "chain": "Ethereum",
                "chain_id": 2,
                "transfers": 434,
                "volume_usd": 1427446
            },
            {
                "chain": "Linea",
                "chain_id": 38,
                "transfers": 2,
                "volume_usd": 1001105
            },
            {
                "chain": "Base",
                "chain_id": 30,
                "transfers": 419,
                "volume_usd": 516233
            },
            {
                "chain": "Arbitrum",
                "chain_id": 23,
                "transfers": 73,
                "volume_usd": 486471
            },
            {
                "chain": "Avalanche",
                "chain_id": 6,
                "transfers": 114,
                "volume_usd": 331873
            },
            {
                "chain": "Unichain",
                "chain_id": 44,
                "transfers": 21,
                "volume_usd": 187383
            },
            {
                "chain": "Polygon",
                "chain_id": 5,
                "transfers": 229,
                "volume_usd": 156485
            },
            {
                "chain": "BNB Chain",
                "chain_id": 4,
                "transfers": 397,
                "volume_usd": 155734
            },
            {
                "chain": "Chain 47",
                "chain_id": 47,
                "transfers": 23,
                "volume_usd": 105898
            },
            {
                "chain": "Sui",
                "chain_id": 21,
                "transfers": 54,
                "volume_usd": 83186
            },
            {
                "chain": "Moonbeam",
                "chain_id": 16,
                "transfers": 22,
                "volume_usd": 74338
            },
            {
                "chain": "Optimism",
                "chain_id": 24,
                "transfers": 10,
                "volume_usd": 34696
            },
            {
                "chain": "Seievm",
                "chain_id": 40,
                "transfers": 3,
                "volume_usd": 34177
            },
            {
                "chain": "Chain 50",
                "chain_id": 50,
                "transfers": 9,
                "volume_usd": 21837
            },
            {
                "chain": "Aptos",
                "chain_id": 22,
 
…