# APEX Runner Liquidation Magnet Signal

> APEX Runner Liquidation Magnet Signal is a paid API for AI agents from apexrunner.ai, paid per call via x402, $1.05/call, status unknown (last checked 2026-09-15).

Returns the nearest significant liquidation cluster price levels above and below the current crypto market price

## Facts

- Endpoint: GET https://apexrunner.ai/signals/liquidation-magnet
- Price: $1.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apex-runner-liquidation-magnet-signal-a92746b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DYn9eXej_mKC6JIHsdggc

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 apex-runner-liquidation-magnet-signal-a92746b1
```

Example prompt: What are the nearest liquidation magnet price levels right now — give me the closest significant liquidation cluster above and below current price, and tell me which side is nearer?

## When to prefer this

Use this endpoint when you need to identify the nearest price levels where large clusters of leveraged positions will be forcibly liquidated, creating potential price magnets or cascade effects. Prefer this over generic order book endpoints when specifically looking for liquidation-driven price targets rather than support/resistance based on volume. Useful for timing entries/exits around anticipated liquidation cascades in crypto derivatives markets.

## Known failure modes

- Insufficient market data may result in null or missing price levels
- API payment failure (402) if USDC payment not processed
- Rate limiting if called too frequently
- Stale data if market is moving extremely fast
- Service unavailability during exchange maintenance windows

## How this service works

APEX Runner: Liquidation Magnet Signal

## Output

Returns a JSON object with three fields: 'above' (float price level of the nearest significant liquidation cluster above current price), 'below' (float price level of the nearest significant liquidation cluster below current price), and 'nearest_side' (string indicating whether 'above' or 'below' cluster is closer to current price). Example: {above: 65000, below: 61500, nearest_side: 'below'}.

## Example request

```json
{
 "symbol": "BTC/USDT",
 "timeframe": "1h"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "coin": {
       "enum": [
        "AVAX",
        "BTC",
        "ETH",
        "LINK",
        "SOL",
        "XRP"
       ],
       "type": "string",
       "default": "BTC"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "coin": {
       "type": "string"
      },
      "note": {
       "type": "string"
      },
      "_apex": {
       "type": "object",
       "properties": {
        "signal": {
         "type": "string"
        },
        "source": {
         "type": "string"
        },
        "version": {
         "type": "string"
        },
        "instance": {
         "type": "string"
        },
        "verify_at": {
         "type": "string"
        },
        "signal_hash": {
         "type": "string"
        },
        "live_trading": {
         "type": "boolean"
        },
        "evolution_runs": {
         "type": "integer"
        },
        "live_capital_deployed": {
         "type": "boolean"
        },
        "trades_backing_signal": {
         "type": "integer"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "mark_price": {
       "type": "number"
      },
      "spot_price": {
       "type": "integer"
      },
      "magnet_bias": {
       "type": "string"
      },
      "liq_clusters": {
       "type": "object",
       "properties": {
        "above_count": {
         "type": "integer"
        },
        "below_count": {
         "type": "integer"
        },
        "above_notional_usd": {
         "type": "number"
        },
        "below_notional_usd": {
         "type": "number"
        }
       }
      },
      "distance_up_pct": {
       "type": "number"
      },
      "wallets_sampled": {
       "type": "integer"
      },
      "nearest_long_liq": {
       "type": "number"
      },
      "distance_down_pct": {
       "type": "number"
      },
      "nearest_short_liq": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "above": "float — price level of the nearest significant liquidation cluster above current price",
 "below": "float — price level of the nearest significant liquidation cluster below current price",
 "example": {
  "above": 65000,
  "below": 61500,
  "nearest_side": "below"
 },
 "nearest_side": "string — which cluster is closer to current price: above or below"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apex-runner-liquidation-magnet-signal-a92746b1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apexrunner.ai](https://www.zero.xyz/host/apexrunner.ai/llms.txt)
