# TokenGuard Pendle DeFi Analytics

> TokenGuard Pendle DeFi Analytics 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-14).

Fetches Pendle Protocol DeFi analytics data including yield markets, PT/YT token data, and liquidity pool metrics

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/pendle
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-pendle-defi-analytics-aa40f456
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c75QA2-VH25jtfNMq5XWV

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-pendle-defi-analytics-aa40f456 -d '<json body>'
```

Example prompt: Pull the latest Pendle Protocol yield market data for me — I want to see current APYs, PT/YT token prices, and liquidity metrics so I can figure out the best fixed-yield opportunities right now.

## When to prefer this

Choose this endpoint when you specifically need Pendle Protocol yield market data — PT/YT token metrics, implied APYs, or Pendle pool liquidity — as part of a broader DeFi analytics workflow. Prefer it over generic DeFi APIs when Pendle-specific yield trading data is required. Costs $0.01 USDC per call via x402 micropayments on Base.

## Known failure modes

- Empty JSON response if no Pendle market data is available
- 402 Payment Required if x402 micropayment header is missing or insufficient
- Invalid market/token address returns empty or error response
- Rate limiting or timeout if HuggingFace Space is cold-starting
- Stale data if on-chain indexer is lagging

## How this service works

pendle data for AI agents.

## Output

Returns JSON containing Pendle Protocol market data such as yield market listings, PT (Principal Token) and YT (Yield Token) prices, implied APY rates, pool liquidity figures, and related on-chain DeFi analytics for the Pendle ecosystem.

## 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-pendle-defi-analytics-aa40f456/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)
