/v1/chains
Blockchains ranked by cross-chain activity (24h)
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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,
…