Naar de inhoud
GET /v1/search

Universal on-chain search

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/lumia-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 13,
        "query": "USD",
        "results": [
            {
                "name": "USDC",
                "type": "token",
                "symbol": "USDC",
                "address": "0xFF297AC2CB0a236155605EB37cB55cFCAe6D3F01"
            },
            {
                "name": "Tether USD",
                "type": "token",
                "symbol": "USDT",
                "address": "0xee7Fc418f5659a366b548b4E205d374C1F0B46e7"
            },
            {
                "name": "Tether USDt",
                "type": "token",
                "symbol": "USDT",
                "address": "0xd523474C9F8D5e6C0FBcc5FADEA961E6639147Bf"
            },
            {
                "name": "stage-Tether USDt",
                "type": "token",
                "symbol": "s-USDT",
                "address": "0x61a4D46868431953a34c005DF0324215b4ae6044"
            },
            {
                "name": "USDC",
                "type": "token",
                "symbol": "USDC",
                "address": "0x078fE045ea01cdAcFE4476c657422EBA2C8F30A2"
            },
            {
                "name": "stage-USDC",
                "type": "token",
                "symbol": "s-USDC",
                "address": "0x09bF75380297ffC7AcCF418928Eaf112b1363Dca"
            },
            {
                "name": "Tether USD",
                "type": "token",
                "symbol": "USDT",
                "address": "0x1E4a5963aBFD975d8c9021ce480b42188849D41d"
            },
            {
                "name": "USDT",
                "type": "token",
                "symbol": "USDT",
                "address": "0x46DB66E50189511516efe6d2E7BEF5e12a5293B8"
            },
            {
                "name": "Paribus USDT",
                "type": "token",
                "symbol": "pUSDT",
                "address": "0xb157c55483fDd9512B336Cc52aa1b31736A1b287"
            },
            {
                "name": "USD Coin",
                "type": "token",
                "symbol": "USDC",
                "address": "0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035"
            },
            {
                "name": "Tether USD",
                "type": "token",
                "symbol": "USDT",
                "address": "0x21D7b0482305452C922c8C200D50d68D8eF91e39"
            },
            {
                "name": "USD Coin",
                "type": "token",
                "symbol": "USDC",
                "address": "0xDF604518BCe0606Df090FED4eD6d1dd65567Ab3d"
            },
            {
                "name": "USD Coin",
                "type": "token",
                "symbol": "USDC",
                "address": "0xA7EA06983CF15A1957b9aae2c57aBa9066Fb9652"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-08T09:50:56.961Z",
        "request_id": "28f9cf10-c4ea-4877-ad92-5f005d2c994a"
    },
    "status": "ok",
    "message": "Search results retrieved successfully",
    "success": true
}