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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 50,
        "query": "USDC",
        "results": [
            {
                "name": "USDC",
                "type": "token",
                "symbol": "USDC",
                "address": "0x078D782b760474a361dDA0AF3839290b0EF57AD6"
            },
            {
                "name": "Spark USDC Vault",
                "type": "token",
                "symbol": "sUSDC",
                "address": "0x14d9143BEcC348920b68D123687045db49a016C6"
            },
            {
                "name": "Venus USDC (Core)",
                "type": "token",
                "symbol": "vUSDC_Core",
                "address": "0xB953f92B9f759d97d2F2Dec10A8A3cf75fcE3A95"
            },
            {
                "name": "USD Coin",
                "type": "token",
                "symbol": "USDC",
                "address": "0xB3FCA863dD0F6b496cCDDf6497Da5Dad67857F56"
            },
            {
                "name": "Compound USDC",
                "type": "token",
                "symbol": "cUSDCv3",
                "address": "0x2c7118c4C88B9841FCF839074c26Ae8f035f2921"
            },
            {
                "name": "Gauntlet USDC",
                "type": "token",
                "symbol": "gtusdcc",
                "address": "0x38f4f3B6533de0023b9DCd04b02F93d36ad1F9f9"
            },
            {
                "name": "POPT-V1 WETH LP on USDC/WETH 5bps",
                "type": "token",
                "symbol": "poWETH",
                "address": "0x607435A33C4310A98A8Ff67C40d02FD3ED2020dB"
            },
            {
                "name": "POPT-V1 USDC LP on USDC/WETH 5bps",
                "type": "token",
                "symbol": "poUSDC",
                "address": "0xE5565daeE2ccDD18736AD8B1A279A43626bbf369"
            },
            {
                "name": "Zeno Lend USDC",
                "type": "token",
                "symbol": "iUSDC",
                "address": "0x53bC874077a8bb324CA47D94FED886bFbe87dDa5"
            },
            {
                "name": "POPT-V1.1 USDC LP on ETH/USDC 5bps",
                "type": "token",
                "symbol": "poUSDC",
                "address": "0xf40BaA5F85e8CeD1a1dd2d92055C06469965469E"
            },
            {
                "name": "xETH-USDC05",
                "type": "token",
                "symbol": "xETH-USDC05",
                "address": "0x509afb487658F48FE9C1B76e2ABB4D01C7c15307"
            },
            {
                "name": "MellowVelodromeStrategy:USDC-WETH-100",
                "type": "token",
                "symbol": "MVS:USDC-WETH-100",
                "address": "0xcd975e6a5F55137755487F0918b8ca74aCCe7925"
            },
            {
                "name": "Bridged USDC (Lucid)",
                "type": "token",
                "symbol": "USDC.e",
                "address": "0x909583f64948e4C6A9c7A9285C292E9d9302fb96"
            },
            {
                "name": "Re7 USDC",
                "type": 
…