Ir al contenido
GET /v1/stats

Global Wormhole scorecard

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/stats" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wormhole-api/v1/stats", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wormhole-api/v1/stats");
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/stats",
    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": "The global Wormhole cross-chain scorecard: total messages ever relayed and total bridged volume over the network's life, the current value locked, and message counts and bridged volume (USD) over the last 24 hours, 7, 30, 90 days and a year. A read on how much value is moving between blockchains. Live, cached ~60s.",
        "source": "Wormholescan public API (api.wormholescan.io), keyless",
        "tvl_usd": 2159954176,
        "messages": {
            "1y": 77439987,
            "7d": 1348030,
            "24h": 186555,
            "30d": 5887518,
            "90d": 18131059
        },
        "volume_usd": {
            "1y": 25093587528,
            "7d": 176653652,
            "24h": 21431221,
            "30d": 905078888,
            "90d": 3109882429
        },
        "total_messages": 1185740202,
        "total_volume_usd": 76882164630,
        "total_transactions": 8724860
    },
    "meta": {
        "timestamp": "2026-06-12T19:36:09.578Z",
        "request_id": "ad8ccd12-6f70-47ec-8d66-0e344a2d2ecb"
    },
    "status": "ok",
    "message": "Stats retrieved successfully",
    "success": true
}