Skip to content
Eden Engine

DeFi Protocol Leaderboard (by TVL, Revenue, Fees, Volume, or Users)

omnial/project-defi-ranking

Given a ranking metric (TVL, revenue, fees, volume, or users) and a page (limit/offset), returns a leaderboard of DeFi protocols (e.g. Aave, Uniswap, Lido) sorted by that metric, each with its name, symbol, and whichever metric values the protocol reports.

activeper callv1
Provider
Web & Business Data Network
Category
defi
Provider price
$0.01638 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "metric"
  ],
  "properties": {
    "limit": {
      "type": "integer",
      "default": 20,
      "maximum": 100,
      "minimum": 1,
      "description": "Results per page. Example: 20. Defaults to 20."
    },
    "metric": {
      "enum": [
        "tvl",
        "revenue",
        "fees",
        "volume",
        "users"
      ],
      "type": "string",
      "description": "Ranking metric. Can be tvl, revenue, fees, volume, or users. Example: tvl."
    },
    "offset": {
      "type": "integer",
      "default": 0,
      "maximum": 9007199254740991,
      "minimum": 0,
      "description": "Pagination offset. Example: 0. Defaults to 0."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "tvl": {
            "type": "number",
            "description": "Total value locked, in USD."
          },
          "fees": {
            "type": "number",
            "description": "Fees generated, in USD."
          },
          "name": {
            "type": "string",
            "description": "Protocol or company display name, e.g. 'Aave'."
          },
          "slug": {
            "type": "string",
            "description": "URL-safe protocol identifier, e.g. 'aave'."
          },
          "users": {
            "type": "number",
            "description": "Active user count."
          },
          "symbol": {
            "type": "string",
            "description": "Token ticker, e.g. 'AAVE'. Not observed on every row (absent for stablecoin issuers and custodians like Tether, Circle, BitGo)."
          },
          "volume": {
            "type": "number",
            "description": "Trading volume, in USD."
          },
          "revenue": {
            "type": "number",
            "description": "Protocol revenue, in USD."
          }
        },
        "description": "Only `slug`, `name`, and the requested ranking metric are observed on every row. `symbol`, and the four non-requested metric fields (tvl/revenue/fees/volume/users), are present only when the protocol reports that value -- several real rows (e.g. BitGo, Ondo Finance, PayPal, BlackRock) carry only `tvl` with no revenue/fees/volume/users at all.",
        "additionalProperties": true
      },
      "description": "One entry per ranked protocol, in ranked order. Empty when the requested offset is past the last available row (see revenue-empty-page.json: offset 9000 on the revenue metric returned zero rows with meta.empty_reason set)."
    },
    "meta": {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number"
        },
        "cached": {
          "type": "boolean"
        },
        "offset": {
          "type": "number"
        },
        "has_more": {
          "type": "boolean",
          "description": "True when more ranked rows exist beyond this page -- observed on the first page of a 20-row tvl request. Not observed on the empty-page fixture, so its presence when a page is empty is unconfirmed; do not assume it is always present."
        },
        "empty_reason": {
          "type": "string",
          "description": "Only observed present when `data` comes back empty (e.g. an offset past the last page) -- explains why no rows were returned. Absent on every non-empty page observed."
        }
      },
      "additionalProperties": true
    }
  },
  "description": "A page of the DeFi protocol leaderboard for the requested metric.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.01638
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 15, 2026