# Seneschal Recent Liquidations Feed

> Seneschal Recent Liquidations Feed is a paid API for AI agents from api.seneschal.space, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a feed of the most recent DeFi liquidation events on Ethereum mainnet, sourced from Seneschal's block builder telemetry.

## Facts

- Endpoint: GET https://api.seneschal.space/v1/q/recent-liquidations
- 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/seneschal-recent-liquidations-feed-d39ec32c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ANks5WsjDhWhnVt64srvH

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 seneschal-recent-liquidations-feed-d39ec32c
```

Example prompt: Show me the most recent DeFi liquidation events on Ethereum mainnet from Seneschal's block builder feed.

## When to prefer this

Choose this endpoint when you need real-time or near-real-time DeFi liquidation data sourced from a native Ethereum block builder rather than a third-party indexer, especially when you want raw on-chain telemetry without relying on subgraphs or centralized data providers.

## Known failure modes

- No recent liquidations available — empty result set returned
- Payment required (402) if USDC balance is insufficient (costs $0.001 per call)
- Malformed filter properties result in a 400 error
- Service unavailable if block builder node is down

## How this service works

Single-fact: how many on-chain liquidations have we observed in the last `since_min` minutes, with what aggregate debt? Returns {count, total_debt_usd}.

## Output

A list of recent Ethereum DeFi liquidation events captured via Seneschal's Ethereum mainnet block builder, including position and protocol telemetry for each liquidation.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "protocol": {
       "type": "string",
       "description": "Optional protocol filter (aave|morpho|spark|compound)."
      },
      "since_min": {
       "type": "string",
       "description": "Lookback in minutes (default 60)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "integer"
      },
      "total_debt_usd": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 3,
  "total_debt_usd": 96000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/seneschal-recent-liquidations-feed-d39ec32c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.seneschal.space](https://www.zero.xyz/host/api.seneschal.space/llms.txt)
