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/goat-api

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

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/goat-api/v1/search" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/goat-api/v1/search", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/goat-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/goat-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": 11,
        "query": "USD",
        "results": [
            {
                "name": "Bridged USDC (Stargate)",
                "type": "token",
                "symbol": "USDC.e",
                "address": "0x3022b87ac063DE95b1570F46f5e470F8B53112D8"
            },
            {
                "name": "Bridged stgUSDT",
                "type": "token",
                "symbol": "USDT",
                "address": "0xE1AD845D93853fff44990aE0DcecD8575293681e"
            },
            {
                "name": "Avalon Avalon USDC",
                "type": "token",
                "symbol": "aGoatUSDC",
                "address": "0x0b37eE41a3b80431A444d7F3d9F0edE9023BE000"
            },
            {
                "name": "Avalon Avalon USDT",
                "type": "token",
                "symbol": "aGoatUSDT",
                "address": "0x9a02588DDff4d079cC5BEB1b864B12410049288a"
            },
            {
                "name": "Avalon Avalon Variable Debt USDC",
                "type": "token",
                "symbol": "variableDebtGoatUSDC",
                "address": "0xCb4d00EaaF3562469a397994897e7384A124395a"
            },
            {
                "name": "Avalon Avalon Variable Debt USDT",
                "type": "token",
                "symbol": "variableDebtGoatUSDT",
                "address": "0x02edfFA0298313763803089e92e491C915E0e7dD"
            },
            {
                "name": "USDC",
                "type": "token",
                "symbol": "USDC",
                "address": "0x5f61Ade9b37FeC31998702508Fbd8fCAAaD809B8"
            },
            {
                "name": "USD Coin",
                "type": "token",
                "symbol": "USDC",
                "address": "0x2Af8451CDa769549db34e3F6B8421Ad21065A1D9"
            },
            {
                "name": "USD Gambit",
                "type": "token",
                "symbol": "USDG",
                "address": "0xB14a48A69C6ef502785AF02bd6AcB36Eb43165ad"
            },
            {
                "name": "Sumerian USD",
                "type": "token",
                "symbol": "suUSD",
                "address": "0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8"
            },
            {
                "name": "USD Gambit",
                "type": "token",
                "symbol": "USDG",
                "address": "0xE12D69ed026f907b6C6e01DF98ae802601B6294E"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-08T09:50:16.224Z",
        "request_id": "13c53283-5378-445e-a3d1-dc2f328bc26d"
    },
    "status": "ok",
    "message": "Search results retrieved successfully",
    "success": true
}