Zum Inhalt springen
GET /v1/search

Universal search

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/flow-api

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 50,
        "query": "flow",
        "results": [
            {
                "name": "USD Flow",
                "type": "token",
                "symbol": "USDF",
                "address": "0x2aaBea2058b5aC2D339b163C6Ab6f2b6d53aabED"
            },
            {
                "name": "Wrapped Flow",
                "type": "token",
                "symbol": "WFLOW",
                "address": "0xd3bF53DAC106A0290B0483EcBC89d40FcC961f3e"
            },
            {
                "name": "Increment Staked FLOW",
                "type": "token",
                "symbol": "stFlow",
                "address": "0x5598c0652B899EB40f169Dd5949BdBE0BF36ffDe"
            },
            {
                "name": "Flow Sea",
                "type": "token",
                "symbol": "FS",
                "address": "0x57C6824456eC4Cc14e95998aaBE10d2Db6253bA7"
            },
            {
                "name": "FlowToken2049",
                "type": "token",
                "symbol": "Flow",
                "address": "0x1b6C49eC65758D9655678ad0EC2d4162a4fE8b5D"
            },
            {
                "name": "Maxy Flow",
                "type": "token",
                "symbol": "MF",
                "address": "0x9478eA50cfF3b794BecA69be24E8615FCbF842a9"
            },
            {
                "name": "Pegasno Flow",
                "type": "token",
                "symbol": "PF",
                "address": "0x3a4cfF7730e0b0eF6d1E98C58385052347B90B91"
            },
            {
                "name": "ETH Denver 2025 X Flow",
                "type": "token",
                "symbol": "ED2025XF",
                "address": "0x86c6d1CF73e320E65DA8fe60087ba29a01272113"
            },
            {
                "name": "FLOW NIGHT CITY",
                "type": "token",
                "symbol": "FNC",
                "address": "0x057e277705cDf985723295570cD37a0ee7582b5B"
            },
            {
                "name": "FLOW Jack Pot",
                "type": "token",
                "symbol": "FJP",
                "address": "0x2f88730609302Ff7E8A255Bea14E2DC44620eFc4"
            },
            {
                "name": "Flow-G",
                "type": "token",
                "symbol": "F",
                "address": "0xd1827aDE9238F4079b4b0a7EB6712cB0e19474E0"
            },
            {
                "name": "Flow Aliens",
                "type": "token",
                "symbol": "FA",
                "address": "0x906Aa41De661538a32E2c8f93FA035915a1B2143"
            },
            {
                "name": "Flow as it is.",
                "type": "token",
                "symbol": "FAII",
                "address": "0x9Db23b7b2d00144D1e3909eEd1e76eDEfE7780A5"
            },
            {
                "name": "Flow money 69",
                "type": "token",
                "symbol": "FM69",
                "address": "0x3db0cEBB1D40E9e82C7f59df3AAC3db98B5D7213"
            },
  
…