# Binance Futures Real-Time Liquidation Data

> Binance Futures Real-Time Liquidation Data is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.005/call, status down (last checked 2026-09-14).

Returns real-time crypto liquidation data from Binance Futures including total long/short volume, long-short ratio, cascade detection, and largest liquidation events.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/liquidations
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-carbon-cashmere-de-58414f53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VILAG1fQJIgM08kohd3CG

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 api-carbon-cashmere-de-58414f53
```

Example prompt: Can you check the current Binance Futures liquidation data — I want to see the total long and short liquidation volume over the last hour, the long-short ratio, and whether any cascade is being detected right now?

## When to prefer this

Use this endpoint when you need real-time liquidation stress signals from Binance Futures specifically — particularly for cascade detection, long/short imbalance analysis, or identifying peak deleveraging events. Prefer this over generic price feeds when the user's question is about leveraged position blow-ups, forced selling pressure, or futures market stress.

## Known failure modes

- Binance Futures API unavailable — upstream data source outage
- Stale or delayed data if Binance rate limits are hit
- Empty or zero values during low-volatility periods with minimal liquidations
- HTTP 402 if payment not included or USDC balance insufficient
- Malformed response if input schema does not include required type/method fields

## How this service works

Professional crypto market intelligence. Real-time prices, signals, and market scoring.

## Output

Returns a JSON object with liquidation count over the past hour (count_1h), total liquidated volume (total_volume_1h), long-short ratio (long_short_ratio), cascade detection flag, and details on the largest individual liquidation events.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "biggest": {
   "qty": 2.5,
   "side": "LONG",
   "symbol": "BTCUSDT"
  },
  "count_1h": 142,
  "total_volume_1h": 12500000,
  "long_short_ratio": 0.65
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-carbon-cashmere-de-58414f53/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.carbon-cashmere.de](https://www.zero.xyz/host/api.carbon-cashmere.de/llms.txt)
