# Liquidatable Positions Now — Cross-Chain DeFi Liquidation Feed

> Liquidatable Positions Now — Cross-Chain DeFi Liquidation Feed is a paid API for AI agents from trade-production-180b.up.railway.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns positions with health factor ≤ 1 that are liquidatable right now across all monitored chains and lending venues

## Facts

- Endpoint: GET https://trade-production-180b.up.railway.app/mispricing
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/liquidatable-positions-now-cross-chain-defi-liquidation-feed-e6c268fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b7tnPOpjergfUIPbSrt1x

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 liquidatable-positions-now-cross-chain-defi-liquidation-feed-e6c268fe
```

Example prompt: Show me every position that's liquidatable right now across all the chains and lending venues you monitor — I want the borrower addresses, how much debt they have in USD, their health factors, and whether each one is actually sellable.

## When to prefer this

Use this endpoint when you need only the immediately actionable liquidation targets (health factor ≤ 1) rather than the broader distress index which includes near-liquidation positions. Prefer this over the full distress index when operating a liquidation bot that needs a clean, executable queue with no noise from positions that aren't yet liquidatable. Choose this over the unsellable/bad-debt endpoint when you specifically want positions that can be profitably executed right now.

## Known failure modes

- Payment failure (402) if x402 USDC payment of $0.02 is not included or is invalid
- Empty result set if no positions currently meet the health factor ≤ 1 threshold
- Stale data if upstream on-chain indexers are lagging
- Partial results if one or more chain/venue data sources are temporarily unavailable
- Timeout if cross-chain aggregation takes too long under load

## How this service works

Positions liquidatable RIGHT NOW (health factor ≤ 1) across the fleet's chains/venues — the actionable subset of the distress index.

## Output

Returns a JSON object with a count of liquidatable positions and an array of items, each containing borrower address, chain name and ID, venue, collateral asset, debt in USD, health factor (≤ 1), distress score, sellable flag, flags array, data source, and last-updated timestamp. Also includes a builtAt timestamp for the snapshot.

## 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": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/liquidatable-positions-now-cross-chain-defi-liquidation-feed-e6c268fe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trade-production-180b.up.railway.app](https://www.zero.xyz/host/trade-production-180b.up.railway.app/llms.txt)
