# AgentData API — Crypto Liquidation Levels Endpoint

> AgentData API — Crypto Liquidation Levels Endpoint is a paid API for AI agents from agentdata-api.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns key liquidation price levels for crypto assets, helping agents identify where leveraged positions are likely to be forcibly closed

## Facts

- Endpoint: GET https://agentdata-api.com/api/liquidation-levels
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentdata-api-crypto-liquidation-levels-endpoint-520481f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wBpDgRx5_V8ySoD1zBVtl

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 agentdata-api-crypto-liquidation-levels-endpoint-520481f0
```

Example prompt: What are the major liquidation levels for Bitcoin right now — show me where the biggest clusters of long and short positions would get liquidated if the price moves.

## When to prefer this

Use this endpoint when an agent needs real-time liquidation level data for cryptocurrency trading analysis, risk assessment, or market intelligence without requiring an account or API key. Ideal for AI agents operating autonomously via x402 micropayments on Base Mainnet, especially when integrating with Claude Desktop, ElizaOS, or MCP-compatible clients. Prefer over exchange-specific APIs when you need a pay-per-request model with no subscription.

## Known failure modes

- Unsupported asset symbol returns a 400 or empty result
- x402 payment failure results in 402 response requiring USDC micropayment on Base Mainnet
- Rate limiting or network timeout if the payment is not processed in time
- Stale or missing data for low-liquidity assets
- Invalid request body schema returns a 422 validation error

## How this service works

Pay-per-request crypto market data API for AI agents. 16 endpoints on Base Mainnet via x402 protocol. No accounts, no API keys. USDC micropayments from $0.001. Works with Claude Desktop, ElizaOS, and any MCP client.

## Output

Returns structured data showing price levels with significant clusters of leveraged positions, including long and short liquidation zones, estimated volumes at each level, and heatmap-style data indicating where cascading liquidations are most likely to occur.

## 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
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "ts": {
         "type": "string"
        },
        "data": {
         "type": "object",
         "additionalProperties": {
          "type": "object",
          "properties": {
           "price": {
            "type": "number"
           },
           "riskLevel": {
            "enum": [
             "LOW",
             "MODERATE",
             "HIGH"
            ],
            "type": "string"
           },
           "fundingRate": {
            "type": "number"
           },
           "openInterest": {
            "type": "number"
           },
           "estimatedLiquidationZones": {
            "type": "object",
            "properties": {
             "longLiquidations": {
              "type": "object"
             },
             "shortLiquidations": {
              "type": "object"
             }
            }
           }
          }
         }
        }
       }
      },
      "success": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentdata-api-crypto-liquidation-levels-endpoint-520481f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdata-api.com](https://www.zero.xyz/host/agentdata-api.com/llms.txt)
