/v1/search
Search protocols
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
…