Whole-DeFi fees/revenue total + ranked protocols
API · /defifees-api
DeFi Fees & Revenue API
Live data on the fees users pay to DeFi protocols and the revenue those protocols actually keep — the "which protocols earn money" view, a different layer from Total Value Locked. TVL is what is deposited; fees are what users pay to use a protocol; revenue is the slice the protocol or its token-holders retain. Powered by the public DeFiLlama fees feed, no key, nothing stored. The overview endpoint returns the whole-DeFi fee (or revenue) total for the last 24 hours, 7 days and 30 days plus every protocol ranked by what it earns, with its category and chains. The protocol endpoint returns a single protocol's fee and revenue figures side by side across 24h / 7d / 30d / all-time (e.g. Aave, Uniswap, Lido). The chain endpoint returns the fee or revenue total and top-earning protocols for one blockchain (Ethereum, Solana, Base). Switch any list between gross fees and retained revenue with a single metric parameter. This is the fees-and-revenue cut of DeFi — distinct from the TVL, DEX-volume, exchange-ticker and coin-markets APIs in the catalogue.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 180 ms
- Server probes · 24h
- Subscribers
- 4,324
- active
- Total calls
- 0
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 15,000 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 15k calls/month
- 3 req/sec
- All endpoints
- No credit card
Analyst
€9.35 /month
- 190,000 calls / month
- 10 requests / second
- Hard cap (429 above quota, no overage)
- 190k calls/month
- 10 req/sec
- Email support
Pro
€27.20 /month
- 820,000 calls / month
- 28 requests / second
- Hard cap (429 above quota, no overage)
- 820k calls/month
- 28 req/sec
- Priority support
Scale
€61.40 /month
- 2,900,000 calls / month
- 65 requests / second
- Hard cap (429 above quota, no overage)
- 2.9M calls/month
- 65 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Options DEX API
Live on-chain crypto options trading volume — the decentralized options market where protocols like Derive, Aevo, Premia, Ithaca and Rysk let users trade calls and puts on-chain, powered by the public DeFiLlama options feed, no key, nothing stored. This is distinct from a centralized options exchange order book: it measures the volume actually flowing through on-chain options venues. The overview endpoint returns the whole on-chain options market's volume over the last 24 hours, 7 days and 30 days plus every protocol ranked by what it trades, measured as notional (contract face value, the default) or premium (what option buyers actually paid). The protocol endpoint returns a single protocol's notional and premium volume side by side across 24h / 7d / 30d / all-time. The chain endpoint returns the options volume and top venues for one blockchain. See which on-chain options venue leads and how DeFi options flow shifts. This is the on-chain options-volume cut of DeFi — distinct from the centralized options-chain, spot-DEX, swap-aggregator, fees and perpetual APIs in the catalogue.
api.oanor.com/optionsdex-api
Token Security API
Live smart-contract risk and safety analysis for crypto tokens and wallet addresses — the on-chain due-diligence check to run before you buy a token or interact with an address, powered by the public GoPlus Security data, no key, nothing stored. The token endpoint scans an ERC-20-style contract on any supported chain and returns whether it is a honeypot, its buy and sell tax, whether it is mintable or has a hidden or privileged owner who can pause trading or take back ownership, whether it is open-source or a proxy, and its holder and LP-holder counts. The address endpoint screens a wallet address against twenty risk signals — cybercrime, money laundering, phishing, sanctions, stealing attacks, honeypot-related addresses and more — and reports exactly which, if any, are flagged. The chains endpoint lists the 40+ supported blockchains. Catch scam tokens, honeypots and tainted addresses before they cost you. This is the real-time contract-security and risk-screening cut of crypto — distinct from the historical exploit database, the price and the on-chain APIs in the catalogue.
api.oanor.com/tokensecurity-api
DEX Aggregators API
Live trading volume routed through DeFi DEX aggregators — Jupiter, 1inch, CowSwap, Paraswap, OKX Swap, KyberSwap and more — powered by the public DeFiLlama aggregators feed, no key, nothing stored. Aggregators don't hold liquidity themselves: they split each trade across many underlying decentralized exchanges to get the best price, so their volume is the single best measure of where real swap flow actually routes. The overview endpoint returns total aggregator volume over the last 24 hours, 7 days and 30 days plus every aggregator ranked by what it routes, with its category and the chains it covers. The aggregator endpoint returns a single aggregator's volume across 24h / 7d / 30d / all-time. The chain endpoint returns aggregator volume and the top routers for one blockchain (Solana, Ethereum, Base). See which router dominates each chain and how swap flow shifts. This is the swap-routing / aggregator-volume cut of DeFi — distinct from the spot-DEX-volume, fees-and-revenue, TVL and exchange-ticker APIs in the catalogue.
api.oanor.com/dexaggregators-api
Global Crypto Market API
Live aggregate data for the whole cryptocurrency market — the top-down view, not a single coin, exchange or trading pair, powered by the public CoinGecko global feed, no key, nothing stored. The overview endpoint returns the combined market capitalisation of all crypto, the total 24-hour trading volume, the market-wide 24-hour cap change, the number of active cryptocurrencies and markets, and the ongoing / upcoming / ended ICO counts. The dominance endpoint returns each leading coin's share of total market cap — Bitcoin dominance, Ether dominance, the stablecoin share and the long-tail rest — the single most-watched gauge of where money sits in crypto. The defi endpoint returns the decentralized-finance sub-market: its market cap, its share of total crypto, its 24-hour volume and the largest DeFi token. Track total market cap, BTC dominance and the DeFi share as live JSON. This is the whole-market aggregate cut — distinct from the single-coin, single-exchange and cross-exchange coin-markets APIs in the catalogue.
api.oanor.com/globalmarket-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for DeFi Fees & Revenue API?
What's the rate limit for DeFi Fees & Revenue API?
How much does DeFi Fees & Revenue API cost?
Can I cancel my subscription anytime?
Is DeFi Fees & Revenue API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/defifees-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/defifees-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/defifees-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/defifees-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.