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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 39,
        "query": "USD",
        "results": [
            {
                "name": "Stargate Bridged USDC",
                "type": "token",
                "symbol": "USDC.E",
                "address": "0xF1815bd50389c46847f0Bda824eC8da914045D14"
            },
            {
                "name": "Unleash Story USDC",
                "type": "token",
                "symbol": "uStoryUSDC",
                "address": "0xa9651875651Ff7F303605C23EF5c20C8f7BE8266"
            },
            {
                "name": "Bridged stgUSDT",
                "type": "token",
                "symbol": "USDT",
                "address": "0x674843C06FF83502ddb4D37c2E09C01cdA38cbc8"
            },
            {
                "name": "Unleash Story Variable Debt USDC",
                "type": "token",
                "symbol": "variableDebtStoryUSDC",
                "address": "0x43c19B3d7dF59CA773C5B41F867eb957bDf2F938"
            },
            {
                "name": "USDC",
                "type": "token",
                "symbol": "USDC",
                "address": "0x49Fe4CbB645CfE997465CA9F70f03DD9c58d1acF"
            },
            {
                "name": "AI Dollar Alpha USDC",
                "type": "token",
                "symbol": "AIDaUSDC",
                "address": "0xd5255Cc08EBAf6D54ac9448822a18d8A3da29A42"
            },
            {
                "name": "Zeno Lend USDC",
                "type": "token",
                "symbol": "iUSDC",
                "address": "0x4dafa8bdE409f8a6DD86530A543c80bBe13efa53"
            },
            {
                "name": "USDC",
                "type": "token",
                "symbol": "USDC",
                "address": "0xD3540E6B4936583B6EC63ccBC13c8517f283e1a9"
            },
            {
                "name": "USDC",
                "type": "token",
                "symbol": "USDC",
                "address": "0x8B604C1c5a5a821d6f14baf9c1D91D5b21A3f9Eb"
            },
            {
                "name": "USD//C on xDai",
                "type": "token",
                "symbol": "USDC",
                "address": "0x06578bE47CF7D19784A07DB64DCF95B84EE88671"
            },
            {
                "name": "USDT",
                "type": "token",
                "symbol": "USDT",
                "address": "0x6c9b999D33C612cCd8721b0e349adcAE151fcbBf"
            },
            {
                "name": "USD Coin",
                "type": "token",
                "symbol": "USDC",
                "address": "0xAF2327a0a8529176913CACC781D9bddBd276b120"
            },
            {
                "name": "USDR",
                "type": "token",
                "symbol": "USDR",
                "address": "0xa6071841F788748511fD74589a3de1DDe657F73b"
            },
            {
                "name": "PiperxLending USDC",
                "type": "token",
                "symbol": "cUSDC",
                "address": "0x32C91774f41029090581
…