# SuVerse DeFi Protocol TVL History

> SuVerse DeFi Protocol TVL History 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 daily TVL data points for any DeFi protocol over the last 90 days, covering 3000+ protocols powered by DeFiLlama.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-defi-protocol-tvl
- 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-457797e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7HxzN6DKBLthSbg1S3HH7

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-457797e1 -d '<json body>'
```

Example prompt: Pull the 90-day TVL history for Aave from DeFiLlama so I can see whether capital has been flowing in or out over the past few months.

## When to prefer this

Choose this endpoint when you need historical daily TVL data for a specific DeFi protocol over 90 days, especially for trend analysis, competitive positioning, or capital flow monitoring. It covers 3000+ protocols and is backed by DeFiLlama, making it the best choice for broad DeFi TVL coverage without running your own data pipeline.

## Known failure modes

- Unknown or misspelled protocol slug returns an error or empty dataset
- Protocol not indexed by DeFiLlama returns no data
- Network timeout if upstream DeFiLlama API is slow
- Invalid request body format returns a 400 error
- Payment failure via x402 prevents request from being processed

## How this service works

Historical 90-day TVL for any DeFi protocol — Aave, Uniswap, Lido, Curve, MakerDAO, Compound and 3000+ more. Daily TVL points. AI agent protocol growth analyzer, competitive positioning tool, capital-outflow detector, DeFi dashboard. DeFiLlama-powered TVL API.

## Output

An array of daily TVL data points for the specified DeFi protocol spanning the last 90 days, including timestamps and TVL values in USD, suitable for trend analysis, competitive benchmarking, and capital flow detection.

## Example request

```json
{
 "days": 90,
 "protocol": "aave"
}
```

## 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-457797e1/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)
