Ir al contenido
GET /v1/meta

Service metadata

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/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wormhole-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wormhole-api/v1/meta");
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/meta",
    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": "stats and chains and meta take no parameters; assets takes timespan (7d, 15d or 30d; default 7d). Volumes and value locked are in US dollars (cross-chain transfer volumes converted from Wormhole's fixed-point). Chain IDs are Wormhole's canonical identifiers mapped to names. A short ~60-second protective cache fronts the upstream.",
        "source": "Wormholescan public API (api.wormholescan.io), keyless, live",
        "service": "wormhole-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/stats": "Global Wormhole scorecard — messages, volume, TVL over 24h/7d/30d/90d/1y.",
            "GET /v1/assets": "Top tokens bridged by volume (timespan 7d/15d/30d).",
            "GET /v1/chains": "Blockchains ranked by cross-chain transfer activity over the last 24h."
        },
        "scorecard": {
            "tvl_usd": 2159954176,
            "24h_messages": 186555,
            "total_messages": 1185740202
        },
        "description": "Cross-chain messaging and bridging activity across the Wormhole network — one of crypto's largest interoperability protocols, carrying messages and value between 30+ blockchains — live from the public Wormholescan API (no key). It exposes the global scorecard (total messages, bridged volume, value locked, and activity over 24h/7d/30d/90d/1y), the blockchains ranked by their cross-chain transfer activity over the last day, and the tokens being bridged the most by volume. The cross-chain messaging / bridge-flow cut — distinct from single-bridge feeds (Across, THORChain), the DeFi-TVL and DEX feeds, and the on-chain and price feeds.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T19:36:10.400Z",
        "request_id": "4172d574-f196-4b22-8f4a-4447cb1c9294"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}