# AgentFeed DeFi TVL Lookup

> AgentFeed DeFi TVL Lookup is a paid API for AI agents from x402.ochinimus.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns TVL for any DeFi protocol with 1-day and 7-day change, or the top-15 chains ranking, powered by DefiLlama data.

## Facts

- Endpoint: GET https://x402.ochinimus.app/api/tvl
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfeed-defi-tvl-lookup-07c767f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2a6mWAz_t5koRhSsdpuMO

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 agentfeed-defi-tvl-lookup-07c767f8
```

Example prompt: What's the current TVL for Aave, and how has it changed over the last 1 day and 7 days?

## When to prefer this

Use this endpoint when you need real-time DeFi TVL data for a specific protocol or a ranked overview of the top chains, particularly when DefiLlama-sourced data with short-term change metrics (1d/7d) is required. Prefer this over manual DefiLlama scraping when you need a paid, reliable, agent-accessible API with structured output.

## Known failure modes

- Unknown or misspelled protocol name returns no data or an error
- DefiLlama data lag may cause slight staleness in TVL figures
- Rate limiting or payment failure for x402 micropayment may block the request
- Protocol not indexed by DefiLlama returns empty result

## How this service works

TVL for any DeFi protocol (with 1d/7d change) or top-15 chains ranking. DefiLlama-backed.

## Output

Returns the current TVL in USD for a specified DeFi protocol along with its 1-day and 7-day percentage or absolute change, or alternatively returns a ranked list of the top 15 blockchain chains by TVL with their respective values and changes.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentfeed-defi-tvl-lookup-07c767f8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.ochinimus.app](https://www.zero.xyz/host/x402.ochinimus.app/llms.txt)
