Vai al contenuto
GET /v1/search

Search protocols

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/cryptofees-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
…