---
name: liquita-x402-edge.liquita.workers.dev
description: liquita-x402-edge.liquita.workers.dev provides a single API endpoint that returns a paginated, real-time list of at-risk DeFi borrowers across major EVM lending protocols. It surfaces health factor, collateral and debt values in USD, protocol identity, and liquidation status for positions at or near the liquidation threshold.
host: liquita-x402-edge.liquita.workers.dev
---

# liquita-x402-edge.liquita.workers.dev

This host is a narrow, focused data feed for DeFi liquidation risk monitoring. It serves agents and systems that need to identify undercollateralized borrowers on protocols such as Aave v3, Morpho, and Compound across EVM-compatible chains. It does not cover historical data, completed liquidations, or non-EVM ecosystems. Its value is in delivering a current snapshot of at-risk positions with minimal filtering overhead.

## When to use this host

Use this host when an agent needs to identify live at-risk or undercollateralized borrowers on EVM lending protocols (Aave v3, Morpho, Compound) and requires health factor, collateral USD, and debt USD in a single paginated response. Do not use it for historical liquidation event data, post-liquidation analysis, or tracking completed liquidations — a dedicated on-chain indexer or subgraph would be more appropriate for those use cases. It is also not suitable for non-EVM chains such as Solana or Cosmos. If the agent needs to act on liquidations (e.g., execute a liquidation transaction), this host only provides the identification step; a separate execution-capable host or on-chain interaction layer is required.

## Capabilities

### Liquidation Risk Feed

Retrieves a current, paginated snapshot of borrowers whose health factor is at or below the liquidation threshold, filterable by chain and protocol. Provides the core data needed to identify actionable liquidation candidates.

- **`fetch-at-risk-defi-borrowers`** — Returns a paginated list of at-risk DeFi borrowers with health factor, collateral USD, debt USD, protocol, and liquidation status across major EVM lending markets.

## Skill reference

### `fetch-at-risk-defi-borrowers`

**At-Risk DeFi Borrowers** — Returns a paginated list of at-risk DeFi borrowers with health factor, collateral USD, debt USD, protocol, and liquidation status across major EVM lending markets.

*Use when:* Use when an agent needs to identify borrowers near or below the liquidation threshold (health_factor <= 1.0) on DeFi lending protocols such as Aave v3, Morpho, or Compound, optionally filtered by chain or protocol.

*Not for:* Do not use for historical liquidation events or completed liquidations; this feed reflects current at-risk positions only. Not suitable for non-EVM chains.

**Inputs:**

- `chain` (string) — EVM chain slug to filter results. Supported values: base, arbitrum, mainnet, optimism, polygon, avalanche, scroll, mantle, linea, unichain, hyperevm.
- `limit` (integer) — Maximum number of rows to return. Default is 50, maximum is 500.
- `protocol` (string) — Lending protocol to filter results. Supported values: aave_v3, morpho, comet, euler_v2, fluid, moonwell, spark.

**Returns:** Returns schema_version, generated_at, lag_seconds, count, applied filters, and a rows array of at-risk borrower objects each with health_factor, debt_usd, collateral_usd, liquidatable, and last_refresh_at.

**Example:** `GET https://liquita-x402-edge.liquita.workers.dev/v1/at-risk?chain=base&protocol=aave_v3&limit=50`

---
