Zum Inhalt springen
GET /v1/search

Search protocols

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 5,
        "query": "uniswap",
        "total": 5,
        "protocols": [
            {
                "name": "Uniswap V4",
                "chains": [
                    "Ethereum",
                    "Unichain",
                    "OP Mainnet",
                    "Base",
                    "Arbitrum",
                    "Polygon",
                    "Blast",
                    "Zora",
                    "World Chain",
                    "Ink",
                    "Soneium",
                    "Avalanche",
                    "BSC",
                    "Monad",
                    "X Layer"
                ],
                "fees_7d": 6772589,
                "category": "Dexs",
                "fees_24h": 2286548,
                "fees_30d": 30638180,
                "change_1d_pct": 271.68,
                "change_7d_pct": 120.94,
                "fees_all_time": 264006168,
                "change_30d_pct": 274.76
            },
            {
                "name": "Uniswap V3",
                "chains": [
                    "Ethereum",
                    "Arbitrum",
                    "OP Mainnet",
                    "Polygon",
                    "Celo",
                    "BSC",
                    "ZKsync Era",
                    "Sei",
                    "Taiko",
                    "Scroll",
                    "Rootstock",
                    "Filecoin",
                    "Boba",
                    "Moonbeam",
                    "Manta",
                    "Mantle",
                    "Linea",
                    "Avalanche",
                    "Base",
                    "Polygon zkEVM",
                    "Blast",
                    "Gnosis",
                    "BOB",
                    "Lisk",
                    "Corn",
                    "Unichain",
                    "Hemi",
                    "Saga",
                    "LightLink",
                    "GOAT",
                    "XDC",
                    "Lens",
                    "Telos",
                    "World Chain",
                    "Nibiru",
                    "Plasma",
                    "Monad",
                    "Etherlink",
                    "Sonic",
                    "X Layer",
                    "Zora"
                ],
                "fees_7d": 8570479,
                "category": "Dexs",
                "fees_24h": 775467,
                "fees_30d": 21717870,
                "change_1d_pct": -3.45,
                "change_7d_pct": 32.26,
                "fees_all_time": 3512513675,
                "change_30d_pct": 211.21
            },
            {
                "name": "Uniswap V2",
                "chains": [
                    "Ethereum",
                    "Arbitrum",
                    "Polygon",
                    "OP Mainnet",
                    "Base",
                    "BSC",
                    "Avalanche",
                    "Zora",
                    "B
…