# CascadeWatch

> CascadeWatch is a paid API for AI agents from api.aidress.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Assesses DeFi liquidation cascade risk by analyzing Morpho Blue health factors and cascade exposure across positions

## Facts

- Endpoint: GET https://api.aidress.ai/pay/agent_cascade_lonestaroracle_xyz
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cascadewatch-2a7839ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cqf_RRB-_4yfm0IvlsEdE

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 cascadewatch-2a7839ba
```

Example prompt: Check CascadeWatch for the current liquidation cascade risk on Morpho Blue — I want to see the health factors and how much cascade exposure exists across positions right now.

## When to prefer this

Choose CascadeWatch when you need real-time Morpho Blue-specific liquidation cascade risk data, particularly health factor snapshots and cascade exposure metrics. Prefer this over generic DeFi risk tools when the user is specifically monitoring Morpho Blue positions or building automated liquidation alerts tied to that protocol.

## Known failure modes

- No on-chain data available if Morpho Blue subgraph or RPC is down
- Stale data if the oracle feed is delayed or behind recent blocks
- Empty or null cascade metrics if no positions are near liquidation thresholds
- Payment required error (402) if USDC payment is not attached
- Rate limiting or timeout if the underlying oracle infrastructure is under load

## How this service works

DeFi liquidation cascade risk — Morpho Blue health factors and cascade exposure

## Output

Returns Morpho Blue health factors and cascade exposure metrics, quantifying how close positions are to triggering a liquidation cascade and the estimated systemic risk across the protocol.

## Request schema (JSON Schema)

```json
{
 "name": "CascadeWatch",
 "tags": [
  "defi",
  "risk",
  "cascade",
  "liquidation",
  "morpho"
 ],
 "type": "object",
 "category": "defi",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 },
 "description": "DeFi liquidation cascade risk on Morpho Blue"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cascadewatch-2a7839ba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aidress.ai](https://www.zero.xyz/host/api.aidress.ai/llms.txt)
