Zum Inhalt springen
GET /v1/stats

Global Wormhole scorecard

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/wormhole-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

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