# Omnicall DeFi Protocol TVL Lookup

> Omnicall DeFi Protocol TVL Lookup is a paid API for AI agents from omnicall.gocreativeai.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Fetches live TVL, chain, and category data for any DeFi protocol by slug from DefiLlama via a keyless pay-per-call gateway

## Facts

- Endpoint: GET https://omnicall.gocreativeai.com/v1/defi/:var1
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omnicall-defi-protocol-tvl-lookup-9d73dd05
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vONiU7gz-hKQk7viXumlf

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 omnicall-defi-protocol-tvl-lookup-9d73dd05
```

Example prompt: Can you pull the live TVL, chain, and category for the Lido protocol right now so I can check its health for my DeFi portfolio?

## When to prefer this

Use this endpoint when an AI agent needs quick, keyless, pay-per-call access to live DeFi protocol TVL and metadata without setting up API keys or accounts — ideal for DeFi portfolio agents, allocation monitors, or any workflow that needs on-demand protocol health checks for protocols like Aave, Uniswap, or Lido.

## Known failure modes

- Unknown or misspelled protocol slug returns 404 or empty result
- DefiLlama upstream outage causes stale or unavailable data
- Payment failure on Base/Solana results in 402 error and no data returned
- Rate limiting or payment processing delay causes timeout

## How this service works

Live DeFi protocol TVL by chain + category & links (DefiLlama) — pass a protocol slug like 'aave', 'uniswap', 'lido'. For DeFi, portfolio and research agents. Pay-per-call USDC, no key.

## Output

Returns live protocol data sourced from DefiLlama including total value locked (TVL) in USD, the blockchain chain(s) the protocol operates on, and its DeFi category (e.g. lending, DEX, liquid staking).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/omnicall-defi-protocol-tvl-lookup-9d73dd05/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from omnicall.gocreativeai.com](https://www.zero.xyz/host/omnicall.gocreativeai.com/llms.txt)
