Skip to content
Eden Engine

Crypto Liquidation Chart: Long vs Short by Exchange

omnial/market-liquidation-chart

Given a token symbol, an exchange, and a candlestick interval, returns a time series of long and short liquidation volume in USD for that market -- the total value of leveraged positions forcibly closed in each interval, plus which exchanges contributed to each bucket.

activeper callv1
Provider
Web & Business Data Network
Category
derivatives
Provider price
$0.01638 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "symbol"
  ],
  "properties": {
    "to": {
      "type": "string",
      "minLength": 1,
      "description": "End of time range. Accepts Unix seconds (1706745600) or date string (2024-02-01). Example: 2024-02-01."
    },
    "from": {
      "type": "string",
      "minLength": 1,
      "description": "Start of time range. Accepts Unix seconds (1704067200) or date string (2024-01-01). Example: 2024-01-01."
    },
    "limit": {
      "type": "integer",
      "default": 500,
      "maximum": 4500,
      "minimum": 1,
      "description": "Results per page. Example: 500. Defaults to 500."
    },
    "symbol": {
      "type": "string",
      "minLength": 1,
      "description": "Token ticker symbol like BTC or ETH. Example: BTC."
    },
    "exchange": {
      "enum": [
        "Binance",
        "OKX",
        "Bybit",
        "Bitget",
        "Hyperliquid",
        "Gate",
        "HTX",
        "Bitmex",
        "Bitfinex",
        "CoinEx",
        "Aster",
        "Lighter"
      ],
      "type": "string",
      "default": "Binance",
      "description": "Exchange name. Can be Binance, OKX, Bybit, Bitget, Hyperliquid, Gate, HTX, Bitmex, Bitfinex, CoinEx, Aster, or Lighter. Example: Binance. Defaults to \"Binance\"."
    },
    "interval": {
      "enum": [
        "1m",
        "3m",
        "5m",
        "15m",
        "30m",
        "1h",
        "4h",
        "6h",
        "8h",
        "12h",
        "1d",
        "1w"
      ],
      "type": "string",
      "default": "1h",
      "description": "Candlestick interval — bucket size for each point in the liquidation chart series: 1m, 3m, 5m, 15m, 30m, 1h, 4h, 6h, 8h, 12h, 1d, or 1w. This endpoint uses interval only; it does NOT accept time_range. Use from/to to bound the series. Example: 1h. Defaults to \"1h\"."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "integer",
            "description": "Unix seconds marking the bucket."
          },
          "long_liquidation_usd": {
            "type": "number",
            "description": "Total USD value of forced long-position closures in this bucket."
          },
          "short_liquidation_usd": {
            "type": "number",
            "description": "Total USD value of forced short-position closures in this bucket."
          },
          "contributing_exchanges": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Exchange name(s) whose liquidations were aggregated into this bucket."
          }
        },
        "additionalProperties": false
      },
      "description": "One entry per interval bucket, oldest first on the populated fixture observed. Empty when no liquidations occurred in the requested range (observed on the ETH/OKX 4h date-range fixture)."
    },
    "meta": {
      "type": "object",
      "properties": {
        "cached": {
          "type": "boolean",
          "description": "Whether this response was served from the provider's cache."
        }
      },
      "additionalProperties": false
    },
    "$schema": {
      "type": "null",
      "description": "Always null. The raw response's $schema value is a document pointer that names the upstream data pipe's own host, so it is stripped at the shaping layer; the key stays present with a null value rather than being omitted."
    }
  },
  "description": "The liquidation chart response, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": false
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.01638
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 15, 2026