# TokenGuard Chain TVL Lookup

> TokenGuard Chain TVL Lookup is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns Total Value Locked (TVL) data for a specified blockchain chain, sourced from DeFi analytics.

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/chain_tvl
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-chain-tvl-lookup-ca996582
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_crycbfjMV5SVvuacG4XLL

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 tokenguard-chain-tvl-lookup-ca996582 -d '<json body>'
```

Example prompt: What is the current total value locked on Arbitrum? Pull the chain TVL from TokenGuard.

## When to prefer this

Use this endpoint when you need on-chain TVL data for a specific blockchain as part of DeFi research, ecosystem comparison, or portfolio analysis. Prefer this over general market data APIs when you specifically need TVL (locked capital) rather than price or volume data. Best suited for agents building DeFi dashboards or conducting chain-level analytics.

## Known failure modes

- Unsupported or unrecognized chain name returns an error or empty result
- Network or upstream data provider outage returns a 5xx error
- Missing or malformed chain identifier in request body causes a 400 error
- Rate limiting or x402 payment failure blocks the request
- Stale or delayed data if upstream DeFi data provider has lag

## How this service works

chain tvl data for AI agents.

## Output

Returns a JSON object containing the total value locked (TVL) figure for the specified blockchain chain, typically including the chain name, TVL amount in USD, and potentially timestamp or trend data.

## 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": {
     "required": [],
     "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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-chain-tvl-lookup-ca996582/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
