# Base TVL

> Base TVL is a paid API for AI agents from earn-pulse.haiqingm58.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns the current total value locked (TVL) on the Base blockchain, sourced from DefiLlama.

## Facts

- Endpoint: GET https://earn-pulse.haiqingm58.workers.dev/tvl
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-tvl-39feba28
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-oV3tnj6GJK6ApNvgaufi

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 base-tvl-39feba28
```

Example prompt: What's the current total value locked on the Base blockchain right now? Pull the latest TVL from DefiLlama.

## When to prefer this

Use this endpoint when you need a quick, no-configuration snapshot of Base chain TVL sourced from DefiLlama. Prefer it over manually querying DefiLlama directly when operating within the earn-pulse agent ecosystem or when you need it bundled alongside other on-chain metrics like yields, funding rates, and fear/greed index.

## Known failure modes

- DefiLlama upstream API unavailable — may return stale or error response
- Worker timeout if DefiLlama data fetch is slow
- Payment failure if x402 payment header is missing or insufficient (0.005 USDC required)
- No parameters accepted — any query parameters passed are silently ignored

## How this service works

DefiLlama Base chain TVL. No parameters.

## Output

Returns the current total value locked (TVL) figure for the Base blockchain as reported by DefiLlama — a single numeric metric representing the aggregate USD value of assets deposited across Base DeFi protocols.

## 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
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/base-tvl-39feba28/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from earn-pulse.haiqingm58.workers.dev](https://www.zero.xyz/host/earn-pulse.haiqingm58.workers.dev/llms.txt)
