# Agent Exchange — Crypto Liquidations Data

> Agent Exchange — Crypto Liquidations Data is a paid API for AI agents from store.agentexchange.work, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Returns live cryptocurrency liquidation pressure metrics including regime classification, open interest, funding rate, and long/short ratio for a given asset.

## Facts

- Endpoint: GET https://store.agentexchange.work/crypto/liquidations
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-exchange-crypto-liquidations-data-e00a30ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vQ49FHEkNYJVb8YD1AncN

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 agent-exchange-crypto-liquidations-data-e00a30ba
```

Example prompt: What's the current liquidation pressure regime for BTC — is it at long squeeze risk, and what's the open interest and funding rate right now?

## When to prefer this

Choose this endpoint when you need a pre-packaged, interpreted liquidation risk signal for crypto derivatives markets — including regime classification and pressure scoring — rather than raw exchange data. Ideal for trading agents, risk dashboards, or market monitoring workflows that need a single structured answer about leverage risk without aggregating multiple exchange feeds manually. Prefer over raw exchange APIs when you need a normalized, analyst-friendly signal with no infrastructure setup.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty response
- Payment failure (402) if USDC balance is insufficient or x402 auth is missing
- Rate limiting if calls exceed plan quota
- Stale data if upstream derivatives data feed is delayed
- Missing symbol parameter defaults to BTC — agent may receive data for wrong asset if symbol not explicitly passed

## How this service works

Machine-payable data APIs for AI agents across web search, on-chain reads, trading data, market judgment, and AI visibility. The canonical x402 catalog currently exposes 85 paid routes. Pay per call in USDC via x402 on Base. No API keys, no signup.

## Output

A JSON object containing: the asset symbol, a regime classification string (e.g. LONG_SQUEEZE_RISK), a numeric pressure score (0–100), the long/short ratio, total open interest in USD, and annualized funding rate percentage. Also includes an evidence array with supporting data points.

## 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": {
      "symbol": {
       "type": "string",
       "description": "Asset ticker, e.g. BTC, ETH, SOL (default BTC)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "regime": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "evidence": {
       "type": "array"
      },
      "pressure": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "regime": "LONG_SQUEEZE_RISK",
  "symbol": "BTC",
  "pressure": 68,
  "long_short_ratio": 1.63,
  "open_interest_usd": 2025855158,
  "funding_annualised_pct": 11.4
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-exchange-crypto-liquidations-data-e00a30ba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.agentexchange.work](https://www.zero.xyz/host/store.agentexchange.work/llms.txt)
