# TokenGuard Lido DeFi Analytics Endpoint

> TokenGuard Lido DeFi Analytics Endpoint is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves Lido protocol analytics and staking data including stETH metrics, validator info, and DeFi intelligence for AI agents

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/lido
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-lido-defi-analytics-endpoint-4334ab57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z825l2F_udTwISDKWVqZj

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-lido-defi-analytics-endpoint-4334ab57 -d '<json body>'
```

Example prompt: Pull the latest Lido protocol analytics for me — I need current stETH staking APR, TVL, and validator stats so I can assess the liquid staking landscape.

## When to prefer this

Choose this endpoint when you need structured, AI-agent-ready Lido protocol analytics without building your own blockchain indexer. Prefer it over raw RPC calls when you want pre-processed staking metrics (APR, TVL, validator data) delivered as clean JSON. Best suited for agents performing DeFi research, yield comparisons, or portfolio monitoring involving Lido/stETH. The x402 micropayment model at $0.01/call makes it cost-effective for low-frequency agent queries.

## Known failure modes

- Payment not received or x402 micropayment fails — returns 402 Payment Required
- Invalid or malformed POST body — returns 400 Bad Request
- Lido on-chain data source unavailable — may return empty or partial JSON
- Rate limiting if too many calls in succession — returns 429 Too Many Requests
- Hugging Face Space cold start latency causing timeout on first call

## How this service works

lido data for AI agents.

## Output

Returns a JSON object containing Lido protocol analytics such as stETH staking APR, total value locked (TVL), validator statistics, on-chain liquidity metrics, and related DeFi intelligence sourced from on-chain 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-lido-defi-analytics-endpoint-4334ab57/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)
