# DeFi Oracle LP Health Checker

> DeFi Oracle LP Health Checker is a paid API for AI agents from aracil.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Analyzes the health of a DeFi liquidity pool by returning a health score, risk factors, and key metrics for a given DeFiLlama pool ID

## Facts

- Endpoint: POST https://aracil.vercel.app/api/lp-health
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defi-oracle-lp-health-checker-d79e96ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gV62T8kc_fmR2fHM7wQSl

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 defi-oracle-lp-health-checker-d79e96ee -d '<json body>'
```

Example prompt: Can you check the health of the DeFiLlama pool with ID 'f169b8d7-2b5e-4bf3-ae3b-89e9a0c1f03a' and tell me if it's safe to provide liquidity — what's the health score and what risks should I know about?

## When to prefer this

Use this endpoint when you need a structured, scored risk assessment for a specific DeFi liquidity pool identified by its DeFiLlama pool ID. It is ideal before depositing into a pool or monitoring an existing LP position. Prefer this over raw DeFiLlama API calls when you need a synthesized health verdict combining on-chain and aggregated data in a single response.

## Known failure modes

- Invalid or unknown pool_id returns an error or empty response
- Pool no longer tracked by DeFiLlama returns not-found error
- On-chain RPC data unavailable causes partial or stale metrics
- Network timeout if blockchain RPC is slow to respond
- Payment failure via x402/USDC on Base blocks the request

## How this service works

DeFi data for AI agents — yield rates, swap routes, IL calculator, liquidation risk, MEV scanner, TVL tracking. Powered by DeFiLlama + on-chain RPC data. Pay with USDC on Base via x402.

## Output

Returns a JSON object containing the pool ID, project name, chain, a numeric health score, a human-readable verdict, a metrics object with detailed pool data, and an array of risk factor strings identifying specific dangers like impermanent loss, low liquidity, or smart contract risk.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "pool_id"
 ],
 "properties": {
  "pool_id": {
   "type": "string",
   "description": "DeFiLlama pool ID"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string"
  },
  "risks": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "metrics": {
   "type": "object"
  },
  "pool_id": {
   "type": "string"
  },
  "project": {
   "type": "string"
  },
  "verdict": {
   "type": "string"
  },
  "health_score": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/defi-oracle-lp-health-checker-d79e96ee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aracil.vercel.app](https://www.zero.xyz/host/aracil.vercel.app/llms.txt)
