Zum Inhalt springen
GET /v1/search

Universal on-chain search

Live testen

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

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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/hyperevm-api/v1/search" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hyperevm-api/v1/search", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hyperevm-api/v1/search");
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/hyperevm-api/v1/search",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

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

{
    "data": {
        "count": 50,
        "query": "USD",
        "results": [
            {
                "name": "USD₮0",
                "type": "token",
                "symbol": "USD₮0",
                "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb"
            },
            {
                "name": "USDC",
                "type": "token",
                "symbol": "USDC",
                "address": "0xb88339CB7199b77E23DB6E890353E22632Ba630f"
            },
            {
                "name": "Mock USDC",
                "type": "token",
                "symbol": "mUSDC",
                "address": "0x88CD1FE7E295b9aA1de2025165a80A00314eDE67"
            },
            {
                "name": "Hyperbeat USDT",
                "type": "token",
                "symbol": "hbUSDT",
                "address": "0x5e105266db42f78FA814322Bce7f388B4C2e61eb"
            },
            {
                "name": "HyperLend HyperEVM USDT0",
                "type": "token",
                "symbol": "hHyperEvmUSDT0",
                "address": "0x10982ad645D5A112606534d8567418Cf64c14cB5"
            },
            {
                "name": "Hyper USD",
                "type": "token",
                "symbol": "USDHL",
                "address": "0xb50A96253aBDF803D85efcDce07Ad8becBc52BD5"
            },
            {
                "name": "USDeOFT",
                "type": "token",
                "symbol": "USDe",
                "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34"
            },
            {
                "name": "Hyperdrive Treasury USD₮0 Market",
                "type": "token",
                "symbol": "HD-MKT-TSY-USD₮0",
                "address": "0x260F5f56aD7D14789D43Fd538429d42Ff5b82B56"
            },
            {
                "name": "USDH",
                "type": "token",
                "symbol": "USDH",
                "address": "0x111111a1a0667d36bD57c0A9f569b98057111111"
            },
            {
                "name": "Hyperbeat USDC",
                "type": "token",
                "symbol": "hbUSDC",
                "address": "0x057ced81348D57Aad579A672d521d7b4396E8a61"
            },
            {
                "name": "Felix USDT0",
                "type": "token",
                "symbol": "feUSDT0",
                "address": "0xFc5126377F0efc0041C0969Ef9BA903Ce67d151e"
            },
            {
                "name": "Last USD",
                "type": "token",
                "symbol": "USDXL",
                "address": "0xca79db4B49f608eF54a5CB813FbEd3a6387bC645"
            },
            {
                "name": "HyperLend HyperEVM USDC",
                "type": "token",
                "symbol": "hHyperEvmUSDC",
                "address": "0x744E4f26ee30213989216E1632D9BE3547C4885b"
            },
            {
                "name": "Gauntlet USDT0 Vault",
                "type": "token",
                "symbol": "gtUSDT0",
                "address": "0x53
…