# booAIP TVL Lookup

> booAIP TVL Lookup is a paid API for AI agents from booaip.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the current total value locked (TVL) in USD for a specified DeFi protocol, including 7-day percentage change

## Facts

- Endpoint: GET https://booaip.vercel.app/api/tvl
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/booaip-tvl-lookup-6428a622
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ctJchKEB_9xD2N551FAKj

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 booaip-tvl-lookup-6428a622
```

Example prompt: What's the current TVL for Aave right now, and how has it changed over the past 7 days?

## When to prefer this

Use this endpoint when an AI agent needs real-time or near-real-time TVL data for a specific DeFi protocol and can pay $0.01 USDC per call via x402 on Base. Ideal for agents doing DeFi research, portfolio analysis, or protocol comparison without a large data subscription. Prefer this over general web search when structured, machine-readable numeric TVL data with a 7-day trend is needed.

## Known failure modes

- Protocol not found or unsupported — 'found' field returns false
- Invalid or missing protocol name in request body — may return 4xx error
- Payment failure via x402 if USDC balance is insufficient — 402 Payment Required
- Rate limiting or upstream data unavailability — 5xx error
- Network timeout if upstream DeFi data source is slow

## How this service works

DeFi protocol TVL, chains and 1d/7d change (DefiLlama).

## Output

A JSON object with a boolean 'found' flag, the protocol's current TVL in USD as a number, the protocol name, and the 7-day percentage change in TVL. Example: {found: true, tvlUsd: 1000000000, protocol: 'Aave', change7dPct: 2.5}.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "protocol": {
   "type": "string",
   "description": "DefiLlama protocol slug (e.g. aave, uniswap, lido)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "found": true,
  "tvlUsd": 1000000000,
  "protocol": "Aave",
  "change7dPct": 2.5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/booaip-tvl-lookup-6428a622/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from booaip.vercel.app](https://www.zero.xyz/host/booaip.vercel.app/llms.txt)
