# Morpho Liquidation Feed

> Morpho Liquidation Feed is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Scans a Morpho Blue market's active borrower set, prices every position onchain, and ranks them by liquidation health — surfacing positions liquidatable now and those at risk.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/morpho-liquidatable
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/morpho-liquidation-feed-dc279e0c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GlMV3j5mjXcS3T8XVd-YP

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-liquidation-feed-dc279e0c
```

Example prompt: Check the cbBTC/USDC Morpho Blue market and show me all borrower positions with a health factor at or below 1.1, ranked by how close they are to liquidation — include how much the collateral price needs to drop to tip each one over.

## When to prefer this

Choose this endpoint when you need a real-time, ranked view of liquidation risk across all active borrowers in a Morpho Blue market — especially for MEV searchers or liquidation bots that need to act fast. It reconstructs the full borrower set from chain events and prices every position in a single multicall, saving significant indexing and computation work. Prefer it over building your own subgraph query when you need both current health scores and the marginal price-drop-to-liquidation metric in one call.

## Known failure modes

- Invalid or unknown market ID returns an error or empty result
- Onchain RPC congestion may cause multicall to fail or return stale data
- If no positions fall below maxHealth threshold, returns an empty ranked list
- Malformed maxHealth parameter (non-numeric) returns a validation error
- Payment of $0.06 USDC not completed results in 402 Payment Required response

## How this service works

🆕 Built for liquidator / MEV searchers. Reconstructs the active borrower set on a Morpho Blue market from Borrow events, prices every position onchain in one multicall, and ranks them by liquidation health — flagging positions liquidatable NOW (health <= 1.0) and those one small move away, with the collateral price drop that tips each over. market= optional (defaults cbBTC/USDC), maxHealth= cutoff (default 1.1). Not financial advice.

## Output

A ranked list of active Morpho Blue borrowers with each position's current health factor, liquidation status (health <= 1.0 flagged as liquidatable now), collateral value, debt value, and the collateral price percentage drop that would push each borderline position into liquidation — ordered from most to least at risk.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "market": {
       "type": "string",
       "description": "Morpho market id (optional)"
      },
      "maxHealth": {
       "type": "string",
       "description": "Health cutoff (optional)"
      }
     }
    }
   },
   "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-liquidation-feed-dc279e0c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
