# Lending Liquidation Sentinel

> Lending Liquidation Sentinel is a paid API for AI agents from gpt55.558686.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Monitors DeFi lending positions for liquidation proximity, collateral risk, and health-factor warnings

## Facts

- Endpoint: POST https://gpt55.558686.xyz/lending-liquidation-sentinel/entrypoints/monitor_liquidation/invoke
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lending-liquidation-sentinel-6aa00d72
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_knbl1nuWATgzZoSdG4u_w

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 lending-liquidation-sentinel-6aa00d72 -d '<json body>'
```

Example prompt: Check my Aave lending position for wallet 0xAbCd...1234 and tell me how close I am to liquidation — I want health factor warnings and collateral risk details so I know if I need to add more collateral or repay some debt.

## When to prefer this

Use this endpoint when an AI agent needs real-time or near-real-time DeFi lending position risk monitoring, especially for health-factor style liquidation warnings across lending protocols like Aave or Compound. Prefer this over generic blockchain data endpoints when you specifically need structured liquidation proximity signals and collateral risk scores rather than raw on-chain data.

## Known failure modes

- Invalid or unrecognized wallet address returns error
- Position not found on specified protocol returns empty result
- Stale or unavailable on-chain price data may affect health factor accuracy
- Unsupported lending protocol returns unsupported error
- Network RPC issues may cause timeout or incomplete data

## How this service works

Monitor lending positions, liquidation proximity, collateral risk, and health-factor style warnings for DeFi agents.

## Output

Returns health factor score, liquidation proximity percentage, collateral risk assessment, and warning flags indicating whether the position is safe, at risk, or critically close to liquidation on the specified DeFi lending 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": {
     "type": "object",
     "additionalProperties": true
    },
    "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",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lending-liquidation-sentinel-6aa00d72/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gpt55.558686.xyz](https://www.zero.xyz/host/gpt55.558686.xyz/llms.txt)
