/v1/assets
Top tokens bridged by volume
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/wormhole-api/v1/assets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wormhole-api/v1/assets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wormhole-api/v1/assets");
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/assets",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "The tokens bridged the most across Wormhole by dollar volume over the chosen window — which assets are actually moving between chains (stablecoins, ETH, wrapped majors and the rest), each with its native chain and the volume in USD. Pass timespan (7d, 15d or 30d; default 7d). Live, cached ~60s.",
"count": 7,
"assets": [
{
"symbol": "hype",
"volume_usd": 12535769,
"token_chain": "Solana",
"emitter_chain": "Solana",
"token_address": "78e17ff9cf9ef28b15e3d5832741ece7804e07d5c97f42ef33ed5f059c74925f",
"token_chain_id": 1
},
{
"symbol": "WETH",
"volume_usd": 11870854,
"token_chain": "Ethereum",
"emitter_chain": "Ethereum",
"token_address": "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"token_chain_id": 2
},
{
"symbol": "WETH",
"volume_usd": 1505849,
"token_chain": "Ethereum",
"emitter_chain": "Solana",
"token_address": "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"token_chain_id": 2
},
{
"symbol": "Velvet",
"volume_usd": 1339870,
"token_chain": "BNB Chain",
"emitter_chain": "Base",
"token_address": "0000000000000000000000008b194370825e37b33373e74a41009161808c1488",
"token_chain_id": 4
},
{
"symbol": "tBTC",
"volume_usd": 1291593,
"token_chain": "Ethereum",
"emitter_chain": "Ethereum",
"token_address": "00000000000000000000000018084fba666a33d37592fa2633fd49a74dd93a88",
"token_chain_id": 2
},
{
"symbol": "XBG",
"volume_usd": 1022973,
"token_chain": "Ethereum",
"emitter_chain": "Ethereum",
"token_address": "000000000000000000000000eae00d6f9b16deb1bd584c7965e4c7d762f178a1",
"token_chain_id": 2
},
{
"symbol": "WBTC",
"volume_usd": 1020455,
"token_chain": "Ethereum",
"emitter_chain": "Solana",
"token_address": "0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599",
"token_chain_id": 2
}
],
"source": "Wormholescan public API (api.wormholescan.io), keyless",
"timespan": "7d"
},
"meta": {
"timestamp": "2026-06-12T19:36:10.192Z",
"request_id": "55208ec6-be8b-481b-a673-3323f4f904db"
},
"status": "ok",
"message": "Assets retrieved successfully",
"success": true
}