# SuVerse DeFi Protocol Fee Revenue Rankings

> SuVerse DeFi Protocol Fee Revenue Rankings is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns 24h, 7d, and 30d fee revenue, treasury revenue, and growth metrics for 200+ top DeFi protocols ranked by earnings

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-defi-fees
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-75b3b5fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GoeV_-DzQbWscu2wqZCFd

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability proxy-suverse-io-75b3b5fd -d '<json body>'
```

Example prompt: Show me the top DeFi protocols ranked by fee revenue over the last 7 days — I want to see protocol name, category, fees collected, treasury revenue, and growth metrics so I can compare their business models.

## When to prefer this

Choose this endpoint when you need a comprehensive, ranked view of DeFi protocol earnings across 200+ protocols with multiple time windows (24h, 7d, 30d), especially for comparing treasury revenue vs user fees, DeFi valuation research, or identifying the most profitable protocols. Prefer this over on-chain queries when you want pre-aggregated, multi-protocol data without writing custom subgraph queries.

## Known failure modes

- Payment not included or invalid USDC payment — returns 402 Payment Required
- Upstream DeFi fee data source unavailable — returns 503 or stale data
- Malformed POST body — returns 400 Bad Request
- Rate limit exceeded — returns 429 Too Many Requests

## How this service works

DeFi protocol fee revenue (24h, 7d, 30d) ranked by earnings. Protocol name, category, fees collected, treasury revenue, growth metrics. AI agent profitability ranker, business-model comparator, fee-vs-revenue analyzer, DeFi valuation API. 200+ protocols.

## Output

A ranked list of 200+ DeFi protocols including protocol name, category (DEX, lending, derivatives, etc.), fees collected over 24h/7d/30d windows, revenue flowing to the treasury, and growth metrics — enabling comparison of protocol-owned revenue vs user fees for DeFi valuation analysis.

## Example request

```json
{
 "limit": 10,
 "sortBy": "feeRevenue",
 "timeframe": "7d",
 "includeMetrics": [
  "protocol",
  "category",
  "feeRevenue",
  "treasuryRevenue",
  "growth"
 ]
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-75b3b5fd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
