# Morpho Protocol DeFi Metrics Oracle

> Morpho Protocol DeFi Metrics Oracle is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns Morpho protocol metrics including TVL and average supply APR across all markets, delivered as an Ed25519 signed attestation

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/defi/metrics/morpho
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/morpho-protocol-defi-metrics-oracle-fbee0edf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D00AAeWaHIMxmz4Kpz0sp

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 morpho-protocol-defi-metrics-oracle-fbee0edf
```

Example prompt: Can you grab the latest Morpho protocol stats — total value locked and average supply APR across all their markets — and make sure the data comes with a cryptographic attestation so I can trust it for my oracle?

## When to prefer this

Use this endpoint when you need cryptographically verifiable (Ed25519 signed) Morpho protocol metrics — specifically TVL and average supply APR — for use in oracle pipelines, smart contracts, or any context requiring tamper-evident DeFi data. Prefer this over raw on-chain reads when you need off-chain aggregated and attested snapshots, or when comparing Morpho alongside other lending protocols like Compound V3 available on the same platform.

## Known failure modes

- Payment not received or insufficient USDC — returns 402 Payment Required
- Morpho on-chain data temporarily unavailable — may return 503 or stale data error
- Invalid or malformed GET request — returns 400 Bad Request
- Signature generation failure — attestation may be missing or invalid
- Network timeout fetching on-chain Morpho state

## How this service works

Morpho protocol metrics — TVL, avg supply APR across all markets — Ed25519 signed attestation

## Output

A JSON payload containing Morpho protocol metrics including current TVL and average supply APR across all Morpho markets, accompanied by an Ed25519 cryptographic signature for trustless verification in oracle or smart contract contexts.

## 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/morpho-protocol-defi-metrics-oracle-fbee0edf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.myceliasignal.com](https://www.zero.xyz/host/api.myceliasignal.com/llms.txt)
