/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}