# ACODA Liquidation Zones

> ACODA Liquidation Zones is a paid API for AI agents from acoda.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns model-scored liquidation price zones for a specified perpetual futures market, combining CEX liquidation events with Hyperliquid on-chain position data

## Facts

- Endpoint: GET https://acoda.xyz/v1/zones
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/acoda-liquidation-zones-1faa148f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UW3JHRGpRjZz5_007Qqz_

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 acoda-liquidation-zones-1faa148f
```

Example prompt: What are the current liquidation zones for BTC-USDT-PERP right now — specifically where are the long positions most at risk of being wiped out, and how intense are those zones?

## When to prefer this

Choose this endpoint when an AI trading agent needs structured, scored liquidation zone data for BTC, ETH, or SOL perpetual markets and wants a pay-per-call model without subscription overhead. It is particularly valuable when combining CEX liquidation event signals with on-chain Hyperliquid position transparency — something raw order book feeds alone do not provide. Prefer this over generic open-interest endpoints when the agent needs intensity-ranked price zones rather than raw position sizes.

## Known failure modes

- Unsupported market symbol returns a validation error — only BTC-USDT-PERP, ETH-USDT-PERP, and SOL-USDT-PERP are accepted
- Missing or failed x402 payment returns a 402 Payment Required response before data is served
- Low confidence score (e.g. 0.3) may indicate insufficient recent liquidation event data for reliable zone mapping
- Stale on-chain data from Hyperliquid during network congestion may reduce zone accuracy without explicit error
- Empty zones array returned if no significant liquidation clusters are detected in current market conditions

## How this service works

Measured liquidation intelligence combining observed CEX liquidation events with position-level data from Hyperliquid, the largest transparent perp venue. A pay-per-call JSON API for AI trading agents.

## Output

A JSON object containing an array of liquidation zones, each with a side (long or short), a price range (price_low and price_high), and an intensity score (0–1). The response also includes the market symbol, an overall confidence score for the model output, and the model version identifier (e.g. liq-zones-v1).

## 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",
     "required": [],
     "properties": {
      "market": {
       "enum": [
        "BTC-USDT-PERP",
        "ETH-USDT-PERP",
        "SOL-USDT-PERP"
       ],
       "type": "string",
       "description": "Perp market (canonical BASE-QUOTE-PERP)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "paid": true,
  "zones": [
   {
    "side": "long",
    "intensity": 0.9,
    "price_low": 61800,
    "price_high": 62400
   }
  ],
  "market": "BTC-USDT-PERP",
  "confidence": 0.62,
  "model_version": "liq-zones-v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/acoda-liquidation-zones-1faa148f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from acoda.xyz](https://www.zero.xyz/host/acoda.xyz/llms.txt)
