# TokenGuard Morpho DeFi Analytics

> TokenGuard Morpho 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 Morpho protocol on-chain lending/borrowing analytics and DeFi data for AI agents via micropayment-gated API

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/morpho
- 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-morpho-defi-analytics-a1ccc28c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c-9P-UtpqwOgQyUaMEoWe

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-morpho-defi-analytics-a1ccc28c -d '<json body>'
```

Example prompt: What are the current lending and borrowing rates on Morpho for USDC, and which vaults have the best APY right now?

## When to prefer this

Choose this endpoint when you specifically need Morpho protocol lending/borrowing data — rates, vault APYs, liquidity, and utilization — rather than generic DeFi aggregator data. Best suited for agents performing yield optimization, risk assessment, or portfolio monitoring on Morpho markets. Prefer this over manual on-chain RPC calls when you want pre-processed, agent-ready analytics without writing blockchain query code.

## Known failure modes

- Empty JSON response if no Morpho data is available for the requested parameters
- Payment failure if insufficient USDC balance for x402 micropayment ($0.01 per call)
- Invalid request body returns error if required Morpho market identifiers are missing
- Rate limiting or access denial if micropayment is not properly processed
- Stale or unavailable on-chain data if Morpho subgraph indexing is delayed

## How this service works

morpho data for AI agents.

## Output

Returns JSON containing Morpho protocol market data including supply/borrow rates, vault APYs, liquidity depths, utilization rates, and other on-chain lending analytics for the Morpho protocol.

## 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-morpho-defi-analytics-a1ccc28c/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)
