# Binance Futures Liquidations Data

> Binance Futures Liquidations Data is a paid API for AI agents from api.jarvis-x402.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Returns real observed liquidation data from Binance Futures including totals by side (buy/sell), event counts, and recent events, filterable by symbol and time window up to 24 hours.

## Facts

- Endpoint: POST https://api.jarvis-x402.com/liquidaciones-pago
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/binance-futures-liquidations-data-21a87b52
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w-69iXq8KD9W6cIdKreEC

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 binance-futures-liquidations-data-21a87b52 -d '<json body>'
```

Example prompt: Pull the real Binance Futures liquidation data for BTCUSDT over the last 6 hours — give me the totals for buy and sell sides and how many events happened.

## When to prefer this

Use this endpoint when you need real, historically observed Binance Futures liquidation data — not estimates or third-party aggregations. Prefer it when you want side-specific (long/short) liquidation totals and counts for a specific token or across all symbols within a recent time window up to 24 hours. It is the right choice for trading signal analysis, market stress monitoring, or building liquidation dashboards grounded in actual Binance exchange data.

## Known failure modes

- Invalid symbol returns empty result or error
- Hours value outside 1-24 range rejected with validation error
- Binance data source unavailable causes upstream timeout or empty response
- Missing required body fields returns schema validation error
- No liquidation events in the requested window returns zero totals

## How this service works

Liquidaciones reales observadas en Binance Futures: totales por lado (compra/venta), numero de eventos y ultimos eventos, filtrable por simbolo y ventana de hasta 24 horas. Datos historicos reales, no estimaciones.

## Output

Returns an object with aggregated liquidation data including total liquidation amounts split by buy and sell side, number of liquidation events, and a list of the most recent individual liquidation events. Data reflects real historical observations from Binance Futures, not estimates or simulations. Results can be filtered by symbol (e.g. BTCUSDT) and a time window of 1 to 24 hours.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {
      "horas": {
       "type": "integer",
       "maximum": 24,
       "minimum": 1,
       "description": "Ventana de tiempo en horas (1-24)"
      },
      "simbolo": {
       "type": "string",
       "description": "Simbolo a filtrar, ej: BTCUSDT. Omitir para ver todos los simbolos."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/binance-futures-liquidations-data-21a87b52/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.jarvis-x402.com](https://www.zero.xyz/host/api.jarvis-x402.com/llms.txt)
