# Liquita At-Risk DeFi Borrowers Feed

> Liquita At-Risk DeFi Borrowers Feed is a paid API for AI agents from liquita-x402-edge.liquita.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns real-time list of at-risk DeFi borrowers (health factor near liquidation) across Aave V3, Morpho, Comet, Euler V2, Fluid, Moonwell, and Spark on 11 EVM chains, updated every 5 minutes.

## Facts

- Endpoint: POST https://liquita-x402-edge.liquita.workers.dev/v1/at-risk
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/liquita-x402-edge-liquita-workers-dev-be4d238b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sn0yC41kpryL2EOBumqjj

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 liquita-x402-edge-liquita-workers-dev-be4d238b -d '<json body>'
```

Example prompt: Show me all DeFi borrowers currently at risk of liquidation — health factor under 1.05 — across Aave V3 and Morpho on Ethereum mainnet, with their collateral and debt details.

## When to prefer this

Use this endpoint when you need a real-time, multi-protocol, multi-chain snapshot of DeFi borrowers near liquidation threshold. It covers 7 major lending protocols across 11 EVM chains simultaneously, updated every 5 minutes — ideal for liquidation bots, risk monitoring dashboards, or MEV opportunity scanners. Prefer this over single-protocol on-chain queries when breadth and freshness across protocols matter.

## Known failure modes

- Payment not included or insufficient — 402 response requiring $0.001 USDC x402 payment
- Invalid filter parameters — 400 response with validation error
- No at-risk positions found matching filters — empty results array
- Chain or protocol not supported — error or empty response
- Rate limiting or worker timeout on Cloudflare edge — 5xx response

## How this service works

Real-time at-risk DeFi borrowers across Aave V3, Morpho, Comet, Euler V2, Fluid, Moonwell, Spark on 11 EVM chains. Returns health factor, collateral, debt, and protocol. Updated every 5 minutes from the liquita liquidation engine.

## Output

A list of at-risk borrower positions, each including the borrower's EVM address, current health factor, collateral asset and amount, debt asset and amount, protocol name (e.g. Aave V3, Morpho, Comet), and the chain they're on. Data is fresh within the last 5 minutes from Liquita's liquidation engine.

## Example request

```json
{
 "limit": 10,
 "chains": [
  "ethereum"
 ],
 "protocols": [
  "aave-v3"
 ],
 "healthFactorMax": 1.05
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "example": {
  "items": [
   {
    "chain": "base",
    "borrower": "0xabc...123",
    "debt_usd": 11800,
    "protocol": "aave_v3",
    "updated_at": "2026-05-26T10:00:00Z",
    "health_factor": 1.02,
    "collateral_usd": 12500
   }
  ],
  "total": 1031
 },
 "properties": {
  "items": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "chain": {
      "type": "string"
     },
     "borrower": {
      "type": "string",
      "description": "EVM address of the borrower"
     },
     "debt_usd": {
      "type": "number"
     },
     "protocol": {
      "type": "string"
     },
     "updated_at": {
      "type": "string",
      "format": "date-time"
     },
     "health_factor": {
      "type": "number",
      "description": "1.0 = liquidation threshold; <1.0 already liquidatable"
     },
     "collateral_usd": {
      "type": "number"
     }
    }
   }
  },
  "total": {
   "type": "integer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/liquita-x402-edge-liquita-workers-dev-be4d238b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from liquita-x402-edge.liquita.workers.dev](https://www.zero.xyz/host/liquita-x402-edge.liquita.workers.dev/llms.txt)
