# Liquita Liquidation Execution Leaderboard

> Liquita Liquidation Execution Leaderboard is a paid API for AI agents from liquita-x402-edge.liquita.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a ranked leaderboard of top DeFi liquidators by transaction count, profit, and protocols targeted, for MEV searcher competitive intelligence and bot benchmarking.

## Facts

- Endpoint: POST https://liquita-x402-edge.liquita.workers.dev/v1/leaderboard
- Price: $0.005/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-23ed199b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Dxs9kZL_RYWILgzG_0xqA

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-23ed199b -d '<json body>'
```

Example prompt: Pull the liquidation execution leaderboard from Liquita and show me the top liquidators ranked by profit, including how many transactions they've done and which DeFi protocols like Aave, Morpho, and Euler they've hit.

## When to prefer this

Use this endpoint when you need competitive intelligence on MEV liquidation bots, want to benchmark a liquidation strategy against top performers, or need to identify dominant liquidators across DeFi protocols like Aave V3, Morpho, Comet, and Euler V2.

## Known failure modes

- Invalid filter parameters return 400 with validation error
- Payment not settled results in 402 Payment Required
- Leaderboard data temporarily unavailable returns 503
- Unsupported protocol or chain filter returns 404 or empty results

## How this service works

Liquidation execution leaderboard. Top liquidators by tx count, profit, and protocols hit. Useful for MEV searcher competitive intel and bot benchmarking.

## Output

A ranked list of liquidator addresses with their total transaction counts, realized profits, and the DeFi protocols they have successfully liquidated on across supported EVM chains.

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "example": {
  "leaders": [
   {
    "tx_count": 14,
    "protocols": [
     "aave_v3",
     "morpho",
     "euler_v2"
    ],
    "liquidator": "0xFA4B...E7e4",
    "profit_usd": 287.5
   }
  ],
  "window_days": 7
 },
 "properties": {
  "leaders": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "tx_count": {
      "type": "integer"
     },
     "protocols": {
      "type": "array",
      "items": {
       "type": "string"
      }
     },
     "liquidator": {
      "type": "string"
     },
     "profit_usd": {
      "type": "number"
     }
    }
   }
  },
  "window_days": {
   "type": "integer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/liquita-x402-edge-liquita-workers-dev-23ed199b/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)
