# 402.com.tr Morpho Blue Position Health Checker

> 402.com.tr Morpho Blue Position Health Checker is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Returns the liquidation health of a Morpho Blue lending position on Base, including health factor, current vs liquidation LTV, and the collateral price drop that would trigger liquidation.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/morpho-health
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-morpho-blue-position-health-checker-6545da8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EVD1jhouv9V1FX6WsW-sx

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 402-com-tr-morpho-blue-position-health-checker-6545da8c
```

Example prompt: Check how close my Morpho Blue position is to liquidation — my wallet is 0xABC123... and I'm using the default cbBTC/USDC market. Tell me my health factor and how far cbBTC can drop before I get liquidated.

## When to prefer this

Use this endpoint when you need a single-call liquidation health check for a Morpho Blue position on Base, especially for borrowing agents or treasury monitoring that need real-time risk awareness without building custom on-chain queries. Prefer over raw Morpho API when you need a pre-computed, human-readable health summary including exact liquidation price drop.

## Known failure modes

- Wallet address missing or malformed — returns 400 bad request
- Market ID not found or unsupported — returns error or defaults to cbBTC/USDC
- Wallet has no open Morpho Blue position — returns empty or zero health data
- Payment not received — returns 402 Payment Required
- Morpho Blue API or Base RPC unavailable — returns 503 or timeout

## How this service works

🆕 First lending tooling in the catalog. Reads a Morpho Blue position on Base (the largest lending venue on Base) and returns its liquidation health in one call: health factor, current vs liquidation LTV, and the exact collateral price drop that triggers liquidation. Built for borrowing agents and treasuries that need to know how close they are before the market cuts them — Morpho's own API is deferred. Pass wallet= and optionally market= (defaults to cbBTC/USDC). Not financial advice.

## Output

Returns the health factor of the position, the current loan-to-value ratio, the liquidation LTV threshold, and the exact percentage drop in collateral price that would trigger liquidation for the specified wallet and Morpho Blue market.

## 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": [
      "wallet"
     ],
     "properties": {
      "market": {
       "type": "string",
       "description": "Morpho market id (optional)"
      },
      "wallet": {
       "type": "string",
       "description": "Borrower wallet"
      }
     }
    }
   },
   "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/402-com-tr-morpho-blue-position-health-checker-6545da8c/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)
