Vai al contenuto
GET /v1/search

Universal on-chain search

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/swell-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "count": 30,
        "query": "USD",
        "results": [
            {
                "name": "USDe",
                "type": "token",
                "symbol": "USDe",
                "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34"
            },
            {
                "name": "Relend Network USDC",
                "type": "token",
                "symbol": "rUSDC",
                "address": "0x9ab96A4668456896d45c301Bc3A15Cee76AA7B8D"
            },
            {
                "name": "Staked USDe",
                "type": "token",
                "symbol": "sUSDe",
                "address": "0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2"
            },
            {
                "name": "Stargate USD₮0 (Bridged)",
                "type": "token",
                "symbol": "USD₮0",
                "address": "0x102d758f688a4C1C5a80b116bD945d4455460282"
            },
            {
                "name": "Orki USD Stablecoin",
                "type": "token",
                "symbol": "USDK",
                "address": "0x0000bAa0b1678229863c0A941C1056b83a1955F5"
            },
            {
                "name": "USDC",
                "type": "token",
                "symbol": "USDC",
                "address": "0x99a38322cAF878Ef55AE4d0Eda535535eF8C7960"
            },
            {
                "name": "Ionic USDe",
                "type": "token",
                "symbol": "ionUSDe",
                "address": "0x80De7898e9A19f2eef3f91649c77163F177778Ce"
            },
            {
                "name": "StableV2 AMM - USDe/rUSDC",
                "type": "token",
                "symbol": "sAMMV2-USDe/rUSDC",
                "address": "0xF1C0e9F805270De0BCe9cfec5A8395c7c65Fe254"
            },
            {
                "name": "Tether USD",
                "type": "token",
                "symbol": "USDT",
                "address": "0xb89c6ED617f5F46175E41551350725A09110bbCE"
            },
            {
                "name": "USD Stable",
                "type": "token",
                "symbol": "USDs",
                "address": "0x7fA65bb90fCEc0FA82e009E65AA3736c376C2572"
            },
            {
                "name": "Hyperliquid USDC Vault",
                "type": "token",
                "symbol": "hlUSDC",
                "address": "0x5ec9FDA544c2924B9545504d20d6430EF197a5c7"
            },
            {
                "name": "Hyperliquid USDC Vault",
                "type": "token",
                "symbol": "hlUSDC",
                "address": "0xC33b90C5f9db994114694d3dEdC7017f92b2cA54"
            },
            {
                "name": "MellowVelodromeStrategy:oUSDT-USDe-1",
                "type": "token",
                "symbol": "MVS:oUSDT-USDe-1",
                "address": "0xf7511B7433241A2873e089965578FF34b3eceb84"
            },
            {
                "name": "StableV2 AMM - USDK/rUSDC",
                "type": "token",
                "sy
…